2D Shooting | Unity Tutorial (Two Types of Projectiles!)

  Рет қаралды 15,930

Sasquatch B Studios

Sasquatch B Studios

Күн бұрын

Пікірлер: 33
@capilover1023
@capilover1023 11 ай бұрын
Have you thought about doing a tutorial on the weapon system? Switching between weapons, maybe adding UI icons, etc.
@meowl9329
@meowl9329 2 жыл бұрын
I love these! Would want to see you cover the system part, like game saving, data structure, handling multiple scenes etc.
@sasquatchbgames
@sasquatchbgames 2 жыл бұрын
thanks! Already had two of those on my future list ;)
@midniteoilsoftware
@midniteoilsoftware 2 жыл бұрын
A much simpler solution for handling collisions is to just use the collision matrix in the physics settings. That negates the need for any code.
@Ramesss
@Ramesss 9 ай бұрын
AMAZING !!!! You saved me for my Second Semester project love you
@midniteoilsoftware
@midniteoilsoftware 2 жыл бұрын
2 time-saving tips: edit the script template so it doesn’t include all the boiler plate code you always remove anyway and there is a setting under preferences to create objects at origin so you don’t need to reset the transform every time you create a new GameObject.
@sasquatchbgames
@sasquatchbgames 2 жыл бұрын
those are 2 things I've been procrastinating lol. Thanks for the tip, I'm going to have to do both of those
@Notreal76
@Notreal76 2 жыл бұрын
Clear and comprehensible. Thank you!
@mansimoe319
@mansimoe319 9 ай бұрын
Genuinely insane
@apollodavis4090
@apollodavis4090 2 жыл бұрын
Love your devlogs
@sasquatchbgames
@sasquatchbgames 2 жыл бұрын
Thank you!
@midniteoilsoftware
@midniteoilsoftware 2 жыл бұрын
A cool follow-up video would be how to use ScriptableObjects for bullet types.
@sasquatchbgames
@sasquatchbgames 2 жыл бұрын
I love scriptableObjects :D
@capilover1023
@capilover1023 11 ай бұрын
Please update the lesson for perspective camera! It seems to mess up your code
@grassbash
@grassbash 3 ай бұрын
There is one thing that I need help with. When I rotate my gun, it has a weird pivot to it and it doesn't stay in its assigned spot. Please help!
@chadmoberly7044
@chadmoberly7044 Жыл бұрын
Super helpful!
@lfmsmka
@lfmsmka 4 ай бұрын
i have an issue with the layer mask
@CyberAngel67
@CyberAngel67 2 жыл бұрын
I would argue that as you are setting the transform right to the velocity it doesn't need to be done inside a FixedUpdate.
@sasquatchbgames
@sasquatchbgames 2 жыл бұрын
just gave it a shot in Update, and it produced weird janky movement. Definitely works best in FixedUpdate
@CyberAngel67
@CyberAngel67 2 жыл бұрын
@@sasquatchbgames Then you did it wrong
@aazhisekar91
@aazhisekar91 4 ай бұрын
All of your videos are super helpful and very concise. Thank you
@nickrhyswarren
@nickrhyswarren Жыл бұрын
Hi there! Great tutorial as always. I've implemented this after doing the Hollowknight style camera tutorial which took a bit of figuring out as it effected the rotation of the gun (if anyone wants help just ask). The multiple cameras caused problems. I am trying to modify this to suit my game. I have an ability system with upgrades and have tried to add a multishot upgrade, but its a bit buggy at the moment, it shoots three bullets at once in an arc but the extra two just shoot sideways :( I used Quaternion.Euler in the Instanciation of the bullet to be able to change its y axis rotation but that hasn't worked. I'm also struggling with trying to flip the character when rotating the gun past 90/-90 degrees like the gun. The player movement and jumping is turned off and the attack ability is turned on as well as the gun when holding down the attack button. The player can flip when aiming past 90/-90 degrees like the gun however, when exiting the attack (Releasing attack button), if the player is facing left it messes up the flip function of the player so that he is facing the wrong way when moving. I'm sure ill figure it out, but if anyone has a good solution for flipping the character I'd appreciate the help!
@Teles0704
@Teles0704 8 ай бұрын
my bullet is being destroyed when it spanws, what can i do?
@suzyeon4222
@suzyeon4222 9 ай бұрын
when I rotate, the gun rotates in the wrong direction. Please help
@suzyeon4222
@suzyeon4222 9 ай бұрын
i mean the sprite rotates in the right direction but when im facing left side it's the opposite direction. sorry my English is bad
@lancerdev2391
@lancerdev2391 7 ай бұрын
@@suzyeon4222 Hi, I had the same problem and came up with a simple solution. Instead of flipping my player, I flip the sprite. Next, in my gun script, i modified this : float angle = Mathf.Atan2(dir.y, dir.x) * Mathf.Rad2Deg; Vector3 localScale = new Vector3(1f, 1f, 1f); Vector3 localPos = gun.transform.localPosition; if(angle > 90 || angle < -90) { localScale.y = -1f; localPos.x = -1f; } else { localScale.x = 1f; localPos.x = 1f; } gun.transform.localScale = localScale; gun.transform.localPosition = localPos; If flips the gun depending on the facing direction of the sprite of the player. Hope this helps !
@tei_the_boy2367
@tei_the_boy2367 Ай бұрын
This tutorial just didn't really work there was multiple issues.
@Coco-gg5vp
@Coco-gg5vp 2 жыл бұрын
First
@midniteoilsoftware
@midniteoilsoftware 2 жыл бұрын
Nobody beats Coco!
@y0_0go
@y0_0go Жыл бұрын
At 5:45, you could have just used gun.transform.localEulerAngles.z instead of rotation. Correct me if I am wrong. In the end, you use interface and grab a reference to that instead of grabbing enemy script. The reason you say is because there are other objects that get destroyed by bullet. But, you wouldn't add enemy script on other objects. Right ?. So only enemy gets to have enemy script and you don't need an interface there. Really loved your video
@midniteoilsoftware
@midniteoilsoftware 2 жыл бұрын
A more concise syntax is if (collision.gameObject.TryGetComponent(out var damageable)) …
@midniteoilsoftware
@midniteoilsoftware 2 жыл бұрын
Cheaper than a null comparison
@sasquatchbgames
@sasquatchbgames 2 жыл бұрын
Thanks for the tip! I'm going to try that out
Input Icons | Integration Tutorial | Unity3D Tanks! new
22:01
Tobias Froihofer
Рет қаралды 9
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
Crave's Best of 2024! (Best Shorts Together)
52:34
Crave
Рет қаралды 40 М.
Improve your Platformer’s Jump (and Wall Jump) | Unity
8:12
Dawnosaur
Рет қаралды 131 М.
Unity 2D Aim and Shoot at mouse position Tutorial
14:39
MoreBBlakeyyy
Рет қаралды 86 М.
Fire PROJECTILES in UNITY
11:17
BMo
Рет қаралды 28 М.
How Do Game Devs NOT Overscope??
9:04
Green Light Dev
Рет қаралды 10 М.
How to Make Games when you SUCK at Art
8:13
Sasquatch B Studios
Рет қаралды 11 М.
I Made the Same Game in 8 Engines
12:34
Emeral
Рет қаралды 4,3 МЛН
2D Projectiles in Unity - Tutorial
25:19
UnPaws Games
Рет қаралды 6 М.
I created the PERFECT grappling hook... and you can too! UNITY 2D
10:43
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН