2 Overrides every Unity Dev should Use

  Рет қаралды 10,683

Jason Weimann (GameDev)

Jason Weimann (GameDev)

Күн бұрын

Пікірлер
@jefflynch
@jefflynch 8 ай бұрын
Wow, that audio container feature is not well advertised! Good find, Jason and Peter!
@Unity3dCollege
@Unity3dCollege 8 ай бұрын
Mostly thx to peter! :) I noticed his post earlier about it on x (which I actually like now because I only see gamedev content, before I used to see all kinds of non-gamedev stuff, it's much better this way :)
@Furfire
@Furfire 8 ай бұрын
Honestly more work than just doing it in code.
@josh_swanson
@josh_swanson 8 ай бұрын
Crazy helpful! I've been using Animator Overrides for years, but never even heard of the random audio. Its crazy how Unity has good features that they seem to hide.
@carlogiovanni
@carlogiovanni 8 ай бұрын
That audio random container is great, I actually wrote a custom script for similar but no longer needed. Thanks!
@robrab2000
@robrab2000 8 ай бұрын
This was super useful, thanks
@Unity3dCollege
@Unity3dCollege 8 ай бұрын
Glad it was helpful!
@GameDevNerd
@GameDevNerd 8 ай бұрын
One of the best and most concise Unity videos I've seen in a while, haha 😊
@snarf8115
@snarf8115 8 ай бұрын
The audio container is a great find. Thank you Peter. But most importantly, Jason always for these wonderful videos!
@foxdrago9153
@foxdrago9153 8 ай бұрын
You literally saved me life, I'm making an game with ton of characters and that animation trick is going to save me so much time!
@MIKE-MURPHY
@MIKE-MURPHY 4 ай бұрын
Love these 2 features. I definitely want to know more about animation and general gameplay optimization.
@MalikenGD
@MalikenGD 8 ай бұрын
Love Peter (Sunny valley studios) content, nice to see a little collab!
@MarkSapsford
@MarkSapsford 8 ай бұрын
Same - i discovered Peter sometime ago and love his content/tut's
@paulkruger4156
@paulkruger4156 8 ай бұрын
What I like most about the animation override controller. Is the you can add the animation clips to them with a script. So what this means is that when you are editing the enemy. You can add your animation clips there and then let the script add those to the controller in the start or awake function. I haven't used that audio thing as yet (only now hearing of it. Thanks!). But I assume you could add audio clips to it, the same as the animation override controller!
@paulkruger4156
@paulkruger4156 8 ай бұрын
The audio random container must be something new. Can't find it in 2022.3.13f1
@Unity3dCollege
@Unity3dCollege 8 ай бұрын
Yea it's 23+ I think
@TayoEXE
@TayoEXE 8 ай бұрын
Interesting! The audio random container resembles something I did for our audio system that I based on one of Unity's open source projects, so seems they might have decided to make that a built in feature now.
@etrex5272
@etrex5272 8 ай бұрын
Isnt it redundant? It takes a few hours to make an audio manager with scriptable objects that does all this and more?
@dippydogz
@dippydogz 8 ай бұрын
great - that's just in the nick of time, really useful thanks
@TheArghnono
@TheArghnono 8 ай бұрын
Both of them are really useful. Thanks!
@phanta_
@phanta_ 8 ай бұрын
thanks for audio container, rly cool
@kpm25
@kpm25 8 ай бұрын
Thanks for your hard work Jason!!!
@midniteoilsoftware
@midniteoilsoftware 8 ай бұрын
Solid tips!
@Unity3dCollege
@Unity3dCollege 8 ай бұрын
Glad you like them!
@mohammedelwardighi9426
@mohammedelwardighi9426 8 ай бұрын
Hello! Could you create a tutorial on Unity's Third Person Master Character Controller and how to integrate it with the Third Person Character from the standard assets (The Old One)to effortlessly achieve an advanced character setup?🥰
@Darrellc32
@Darrellc32 8 ай бұрын
Nice, I didnt know about the audio ramdomizer. Somthing not related. For the VFX are you using or plan to use a pool system? I wonder if its worth the time to create a VFX pool system for the atacks.
@Unity3dCollege
@Unity3dCollege 8 ай бұрын
I'm not yet but I might in the future. Right now I don't need to optimize that part so putting it off until I have to (should be easy once/if it's necessary, but right now it would just take up time and not get me closer to the playable game yet). Trying really hard to stay fast and get it done quickly (while keeping performance good enough and architecture flexible enough I can optimize the bad spots later)
@ComicusFreemanius
@ComicusFreemanius 8 ай бұрын
Been using FMOD for like two years, can't have two audio listeners at the same time with the built-in last I checked.
@Unity3dCollege
@Unity3dCollege 8 ай бұрын
i constantly create new cameras and have 2 in there spamming a message, removed it from my ui camera but then reverted other changes and it came right back w/ them :)
@ComicusFreemanius
@ComicusFreemanius 8 ай бұрын
@@Unity3dCollege I can send you my fmod runtime manager script. I added another PlayOneShotAttached method with volume control so I can play impact sounds volumes according to the collider penetration. _This is for my grenades bounce sound_ _"PlayFMODImpactSFX" uses the PlayOneShotAttached method_ " if (c.collider.material.name == "Stone (Instance)") PlayFMODImpactSFX(projectileSounds.stoneBNC, collider.impulse.magnitude); " _This is what I added to the fmod runtime manager:_ " public static void PlayOneShotAttached(EventReference eventReference, float volume, GameObject gameObject) { try { PlayOneShotAttached(eventReference.Guid, gameObject); } catch (EventNotFoundException) { RuntimeUtils.DebugLogWarning("[FMOD] Event not found: " + eventReference); } } "
@kalonwalt4894
@kalonwalt4894 8 ай бұрын
Is there a native way for unity to accept 2 audio listeners so that I can give my 2 player split screen characters their own 3D audio? I have an idea of what I'd do with 2D audio, but I really want 3D
@ribicb
@ribicb 8 ай бұрын
Unity 6 beta is already usable?
@ytubeanon
@ytubeanon 8 ай бұрын
yeah, but I found a lot of assets were incompatible, so it's pretty unusable imo
@Unity3dCollege
@Unity3dCollege 8 ай бұрын
I've been on it for a few weeks now. Beta13 seems pretty solid
@voon7820
@voon7820 8 ай бұрын
Darn, just wrote my own 'Animator replacer' and AudioClip randomizer. Next time maybe
@TESkyrimizer
@TESkyrimizer 8 ай бұрын
Devs adding new QOL features: :D Devs telling people about these QOL features: :X
@bunnybreaker
@bunnybreaker 8 ай бұрын
You get a like, but I ain't touching Unity 2023. Thankfully already made an audio randomising system for a previous project.
This FIXES My Game's Enemies
17:06
Deynum Studio
Рет қаралды 190 М.
3 Magic Lines for Game Devs - #unity3d
9:02
Jason Weimann (GameDev)
Рет қаралды 4,9 М.
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
The Unity HACK that the PROS know
21:27
git-amend
Рет қаралды 18 М.
The 6 Design Patterns game devs need?
24:20
Jason Weimann (GameDev)
Рет қаралды 375 М.
How Do Game Devs NOT Overscope??
9:04
Green Light Dev
Рет қаралды 11 М.
We made Vampire Survivors BUT in 10 Lines of Code
7:08
PlayWithFurcifer
Рет қаралды 1 МЛН
Starting Your Unity Game Flawlessly (8 Steps)
9:51
PracticAPI
Рет қаралды 32 М.
Why Majora's Mask's Blue Dog Took 25 Years to Win the Race
21:04
Vidya James
Рет қаралды 2,4 МЛН
Don't Re-create everything - use this instead :)
6:40
Jason Weimann (GameDev)
Рет қаралды 27 М.
3 Game Programming Patterns WE ACTUALLY NEED.
14:13
Jason Weimann (GameDev)
Рет қаралды 16 М.
Adding This One Thing Made my Game Look 327% Better
6:11
OverPhil Dev
Рет қаралды 94 М.
I Made the Same Game in 8 Engines
12:34
Emeral
Рет қаралды 4,3 МЛН