10 Unity Tips You (Probably) Didn't Know About

  Рет қаралды 14,017

Sasquatch B Studios

Sasquatch B Studios

Күн бұрын

Пікірлер: 43
@miksdickinson
@miksdickinson Жыл бұрын
Congratulations on getting nominated for a Unity award! Keep it up! Happy for you guys! 🌟
@sasquatchbgames
@sasquatchbgames Жыл бұрын
Thank you so much!!
@ElNitro7
@ElNitro7 Жыл бұрын
Did you all just watch me for the last 1.5 years while I made Protocol and say hey let's do this quick video on everything this guy keeps failing on??? 😅 too true and thank you. This is genuinely helpful!
@Ingo.Mclean
@Ingo.Mclean Жыл бұрын
the animation tip for repathing and F12 for following to the function!!!! going to save me hours
@TheMrSnipey
@TheMrSnipey Жыл бұрын
F12 = Same as holding control key and clicking on the function. (in vs)
@iiropeltonen
@iiropeltonen Жыл бұрын
I did not know about The RESET function. That's really handy.
@CharlieScarver
@CharlieScarver 2 ай бұрын
Oh man thank you for the animation path edit tip 🙏 I used to tediously recreate every animation
@Jacob___THE_Jacob
@Jacob___THE_Jacob Жыл бұрын
Such good tips. Vids like these can be generic but these are things I didn't know and I've been using unity for a while. Love that you called the thing in tip 4 a nipple haha
@xX_ohio_Xx
@xX_ohio_Xx Жыл бұрын
Tip: if you go into Project Settings > Editor > Enter Play Mode Settings and toggle Enter Play Mode Options on, when you hit play in the editor, you will instantly get into your game scene. This is because this disables reloading the domain, so it is to note that scripts wont be reloaded. For example, if you have a script with a static boolean that you make true when something happens, this will stay as true when you enter play mode again.
@matthewm2139
@matthewm2139 Жыл бұрын
_canFlash = TryGetComponent(out _damageFlasher); why many line when one line do? Nice tips. Didn't know about a few of these.
@niuage
@niuage Жыл бұрын
The classic "if true then true else false" lol
@Chubzdoomer
@Chubzdoomer Жыл бұрын
lol, exactly what I came down here to say! 😛
@vo_sk
@vo_sk Жыл бұрын
Very cool, thanks for sharing!
@thepolygonpilgrimage
@thepolygonpilgrimage Жыл бұрын
By the way, with the ContextMenu trick you can also use I believe it is a \ to create sub-menus as well. Example: Test Functions\Function 1
@jaafarbarek2706
@jaafarbarek2706 6 ай бұрын
Nice tips! For the first tip, isn't it better if saw those exceptions so we can tackle as early as possible? This reminded me of some good cases where force unwrapping is sometimes good to avoid getting into an undetermined state of the app/game
@ninesupap
@ninesupap Жыл бұрын
At 5:35, the "ctrl+r+r" Does this feature exist in VSCode? I always use F2 to rename functions, but in VSCode, it only renames variable names and not the filename for me. Thank you for the tip! ^~^
@sasquatchbgames
@sasquatchbgames Жыл бұрын
No idea, have never used VSCode!
@cesarromeroalbertos3839
@cesarromeroalbertos3839 4 ай бұрын
For the first one, you can assign the component like you did with try get component but instead of setting a boolean you can just go and say _damageFlasher?.Flash(); The ? makes it so if the item prior is null it stops there and ignores the call to the method. Only works with nullable types tho, but it's less clunky than having a boolean for each optional component.
@regys9521
@regys9521 Жыл бұрын
Super useful for sure, thank you very much sir
@tabuuforte8546
@tabuuforte8546 Жыл бұрын
The ContextMenu thing is so legit useful. This stuff is never taught in Unity's godawful docs.
@castlecodersltd
@castlecodersltd Жыл бұрын
Great tutorial, thank you, you've gained a subscriber ☺
@bhluschrean
@bhluschrean 25 күн бұрын
YOU GOT A SUBSCRIBER
@a6gittiworld
@a6gittiworld 11 ай бұрын
Great video!
@ragerungames
@ragerungames Жыл бұрын
AWESOME TIPS! :) THANKS
@SavageVR
@SavageVR 11 ай бұрын
I have never saved a video so fast before.
@midniteoilsoftware
@midniteoilsoftware Жыл бұрын
Number 9 was new to me
@cburn-YT
@cburn-YT Жыл бұрын
I feel like this is mostly Visual Studio Tips that relate to unity more than anything
@umapessoa6051
@umapessoa6051 Жыл бұрын
Thanks for the video, however i disagree on the first tip, it's nice to have errors when something is not working as expected, otherwise in a bigger project you'll find yourself debugging something that simple for hours.
@DanielBoldrin
@DanielBoldrin 7 ай бұрын
Exactly, it makes more sense to check if the component is not null before calling flash to prevent a crash. And still use a Debug.LogError which will popup in dev builds.
@ablackphoenix844
@ablackphoenix844 Жыл бұрын
I already knew most of it and i was like heh! But that reset thing, so many hours wasted 😂 Thanks!
@impheris
@impheris Жыл бұрын
pretty useful video
@seaderwerks3046
@seaderwerks3046 Жыл бұрын
WTF. Where was this video 6 months ago??? omg the first like 6 pertained exactly to my situation.
@flamart9703
@flamart9703 Жыл бұрын
Is there a shortcut to jump to next or previous error while I'm in Visual Studio? I'm learning typing fast and is too time consuming to navigate with arrow keys (with or without Ctrl key).
@shitwedotv
@shitwedotv 7 ай бұрын
#2 would have saved me several hours just today 😂
@celinedrules
@celinedrules 7 ай бұрын
Keyboard shortcuts for comments are not Unity specific and are different for different IDE's.
@scarfacetoni9198
@scarfacetoni9198 3 ай бұрын
great
@kostariev_vadim
@kostariev_vadim Жыл бұрын
@sasquatchbgames Why don't you ask to be voted for you in Unity Awards?
@achomatico
@achomatico Жыл бұрын
👍👍👍👍👍
@davidsanchezplaza
@davidsanchezplaza 8 ай бұрын
ctrl + r ctrl + r is a pwer move
@SLthenus
@SLthenus Жыл бұрын
Why every tutorial has simple Script and Not playing with advanced Script like real game developer do. You know what, my bos is Extremely Senior Game developer, and whenever i write a script by following youtube tutorial he always say it's wrong even it's work. He always destroy and delete my Branch on Plastic SCM. He doesnt like youtube tutorial He always force me to do his structure and code style. Even in simple game, He doesnt allow me to use a simple code, and my standart coding It's like he force me to make a code that can always be used in every Project
@Coco-gg5vp
@Coco-gg5vp Жыл бұрын
First
CLEAN Game Architecture with ScriptableObjects | Unity Tutorial
13:12
Sasquatch B Studios
Рет қаралды 23 М.
10 Unity Tips You (Probably) Didn't Know About
7:09
Sasquatch B Studios
Рет қаралды 9 М.
100km/h Reflex Challenge 😱🚀
00:27
Celine Dept
Рет қаралды 156 МЛН
БАЙГАЙСТАН | 3 СЕРИЯ | ДУБАЙ |bayGUYS
44:17
bayGUYS
Рет қаралды 1,8 МЛН
The Dangers of Dirty Spend Data
56:39
ISM Rochester
Рет қаралды
Unity Code Optimization - Do you know them all?
15:49
Tarodev
Рет қаралды 205 М.
5 Indie Game Dev Mistakes you MUST Avoid
12:25
Sasquatch B Studios
Рет қаралды 21 М.
10 Things You NEED to Be Doing in Unity
11:40
Tarodev
Рет қаралды 140 М.
11 Things You (Probably) Didn't Know You Could Do In Unity
13:49
Game Dev Guide
Рет қаралды 160 М.
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Рет қаралды 821 М.
How to Start Gamedev in 2025
11:41
Sasquatch B Studios
Рет қаралды 40 М.
How you can make YOUR OWN Tween library (Unity Tutorial)
27:16
Sasquatch B Studios
Рет қаралды 6 М.
OPTIMIZE your Unity game using these performance tips | Tutorial
11:20
Sasquatch B Studios
Рет қаралды 28 М.
Watch this if you've never tried JOBS in Unity (Tutorial)
10:32
Sasquatch B Studios
Рет қаралды 14 М.