7 Game Dev Tricks to Improve Your Unity Game

  Рет қаралды 5,171

Dawnosaur

Dawnosaur

Күн бұрын

🎬Design a Great Platformer Jump: • Improve your Platforme...
👩‍💻 Code: github.com/DawnosaurDev/game-...
🎮 Controller Rumble Unity Tutorial: • Add Gamepad RUMBLE wit...
☕ | Support me (ko-fi.com/dawnosaur)
═══════ 🦖My Stuff ═══════
💬│Discord ( / discord )
→ A community that loves game creation
📰 | Newsletter (dawnosaur.substack.com/)
→ Weekly discussions on game design, creators and stuff by me :)
🎮│My Games (dawnosaur.itch.io/)
→ Mostly small projects made for game jams as well as COSMOS my first commercial release
═══════ 💬Description ═══════
If you’re looking to create an immersive, satisfying experience, game feel is the first place to start.
In this Game Feel deep dive, I look into seven unity tricks and tips that can help your game feel more satisfying to play. This covers everything from camera shake to visual & particle effects. Together these seven tricks will increase your Unity game's "juice".
═══════ 📕More Resources ═══════
Vlambeer Talk - The Art of Screenshake: • Jan Willem Nijman - Vl...
Secrets of Game Feel and Juice: • Secrets of Game Feel a...
Vlambeer Articles: designoriented.net/blog/autho... (scroll down)
═══════ 🔮My Tools ═══════
- Unity - Game Engine
- VS Code - IDE
- Affinity Designer - Art & Graphics Design
- Aseprite - Pixel Art
- DaVinci Resolve - Video Editing
- Audacity - Audio Editing
- Logitech G Hub with a Blue Yeti Nano Microphone - Audio Recording
- Notion - Organisation, Notes & Scripts
- Google Calendar - Organisation
═══════ ⏰Chapters ═══════
0:00 Keep Watching
0:14 #1 Impact Flash
0:43 #2 Camera Movement
1:32 Game Design interlude
1:53 #3 Time Freeze
2:19 #4 Controller Rumble
2:38 #5 Effects
3:13 #6 Level Permanence
3:48 #7 Screenshake
4:33 Consider Subscribing
═══════ 📜Credits ═══════
Thumbnail Image:
- Rocket League
Clips Used from:
- @snomangameplay
- Besiege Trailer
- @Brackeys (Cinemachine Clip) - • Intro to Cinemachine
- Zelda Gameplay Trailer
- God of War Trailer
- Gris Trailer
- Ape Out Trailer
- Minecraft Trailer
- Super Time Force Ultra Trailer
- @Brackeys Screenshake Tutorial (Explosion Clip) - • CAMERA SHAKE in Unity
- Super Hot Trailer
- Rocket League Trailer
Graphics from Flat Icons
- Damaged package icons created by kerismaker
- Shooting range icons created by Smashicons
- Earthquake icons created by Konkapp
- Freeze icons created by Smashicons
- Earthquake icons created by Konkapp
- Video camera icons created by Freepik
- Fire icons created by Freepik
- Gaming icons created by mynamepong
- Thunder icons created by Smashicons
✨𝑻𝒉𝒂𝒏𝒌𝒔 𝒇𝒐𝒓 𝒘𝒂𝒕𝒄𝒉𝒊𝒏𝒈!

Пікірлер: 24
@DawnosaurDev
@DawnosaurDev 9 ай бұрын
Join Our Discord! A space for creators to hangout, learn together and share their work. ➡discord.gg/W5vE5WKXYH Future Improvements to the Code will be put here: - If you're having performance issues, switching out the coroutines for timers within Update() would be a great place to start. While the memory allocated here is small this could add up eventually if you're using a lot of these effects. This will be super minor for most of you, but worth knowing just in case. Thanks a lot to @sealsharp for pointing this out! "Every start of a coroutine allocates memory. Every yield except yield null allocates memory. So, if you create all these little features that happen a lot with coroutines, that will add up and the garbage collector will come around for a nice frame drop."
@BravosChannel
@BravosChannel 9 ай бұрын
AMAZING tips. I didn't know you only had around 4.6k subs considering these tips are said in the most concise and straightforward way. My favorite effect probably either has to be screenshake or time freeze. Love feeling the impact in games when action is happening
@DawnosaurDev
@DawnosaurDev 9 ай бұрын
That's awesome, I appreciate it!
@ytubeanon
@ytubeanon 9 ай бұрын
came from Reddit... very polished, some tips reminded me of Feel in the asset store
@madlad255
@madlad255 9 ай бұрын
This is such a great and concise video. I remember a while ago I said your editing felt a bit too fast-paced, but I think you're starting to find a nice balance where you give a lot of information in a short time while also making it stick! Also, it's nice that you mentioned you don't *have to* include these effects in your games; a lot of tutorials forget about that part.
@sealsharp
@sealsharp 9 ай бұрын
A little note at points #1, #3, #7 Every start of a coroutine allocates memory. Every yield except yield null allocates memory. So, if you create all these little features that happen a lot with coroutines, that will add up and the garbage collector will come around for a nice framedrop. Every one of these examples done with coroutines can be done within the update loop just as easily.
@DawnosaurDev
@DawnosaurDev 9 ай бұрын
Thanks for letting me know. Usually I'm not super worried out performance when most of the games I and others are making are incredibly simple given modern hardware so I won't update the code. But, I'll add a note about this in the project description and on GitHub. Thanks for sharing!
@sealsharp
@sealsharp 9 ай бұрын
@@DawnosaurDev The individual uses aren't the problem. It's when you get used to a workflow and it feels comfortable, you use it every time as it feels like the natural, intuitive thing to do. You may end up with a situation where fixing a framedrop problem requires change in lots of components. And it's not especially you who does that. Other channels do that as well with all kinds of systems from tinting a sprite to onHover events to AI behaviour. Worst i've seen is someone creating some wiggle-effect with OnCollisionStay as the trigger, which then creates 50 coroutines per second per entity and running through the screen from left to right creates hundreds of them with many running in parellel overwriting each other. And it looks fine. And if it looks fine, and it is taught that way, people assume it is fine and the way to do. So please don't take that personal and overall, you're doing fine. On average what youre saying is right and well delivered and it will help people. So good job and have a nice sunday :-)
@jakesilberstein9227
@jakesilberstein9227 9 ай бұрын
Really a great video man! I think the fast paced nature of it combined with genuinely good ideas is a really entertaining and informative style. Well done!
@user-ly7vp5ng2z
@user-ly7vp5ng2z 4 ай бұрын
i love your work! had to watch it 3 times cause it was really fast but even as a beginner i understood everything :D
@duyvo1258
@duyvo1258 9 ай бұрын
Your code is really easy to understand and keep track of as you use comments and regions in a very smart way. Thank you! Oh and by the way also thank you for the platformer tips, they're really helpful, I combined them with state machine pattern and it's pretty nice.
@iiropeltonen
@iiropeltonen 9 ай бұрын
Excellent gamedev tutorial. Technical and entertaining.
@kneo12
@kneo12 3 ай бұрын
Great video as always
@osa4erpak591
@osa4erpak591 9 ай бұрын
Man you are the best! your guides are just imba, make a video about the combat system like in HK.
@nibuprofeno
@nibuprofeno 9 ай бұрын
He came back!
@eddiee9147
@eddiee9147 9 ай бұрын
Thank you Atom for the tips (Yes I called you Atom). I’m going to look through your older videos to see if I can finish a project
@Taehc
@Taehc 9 ай бұрын
Regarding platformers, what do you say about leniency with button pressing accuracy such as coyote time or jump buffer? I mean, I might include them since apparently that's the trend for more "responsive control", when ironically they literally press too early or too late.
@DawnosaurDev
@DawnosaurDev 9 ай бұрын
I would always include them. Usually the times are short enough that players won't directly notice, but should help get rid of a ton of frustration points. I've got a full video on making a platformer jump feel great if you're looking for more: kzbin.info/www/bejne/aISWmGt5nKd6Z8k
@mohakjain5802
@mohakjain5802 9 ай бұрын
I liked the video but I have to say that you were speaking fast. I thought my playback speed was 1.5X. I think you should slow down the pace of the video as little bit. Overall very informative video 💖💖
@zoeeechu
@zoeeechu 9 ай бұрын
do i refrence camera shake with a public game object??? edit: nvm i got it when using the "Basic Multi Channel Perlin" make sure to actaully set a noise profile and set Amplitude Gain to 0 so it doesnt start shaking on start
@figoospalle
@figoospalle 9 ай бұрын
Time freeze is called hitstop
@franciscooteiza
@franciscooteiza 9 ай бұрын
This is officially a semi-dead channel
@mohamedimranechehabi5735
@mohamedimranechehabi5735 9 ай бұрын
don't starve us from your content man, not cool
How to Keep Players Engaged (Without Being Evil)
10:46
Game Maker's Toolkit
Рет қаралды 2,4 МЛН
Making Ape Out's Juicy Combat in Unity | Game Jam Devlog
6:18
Эта Мама Испортила Гендер-Пати 😂
00:40
Глеб Рандалайнен
Рет қаралды 10 МЛН
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Рет қаралды 670 М.
I Made Snake With 30,000 Players
7:28
PolyMars
Рет қаралды 552 М.
Cool movement mechanics you can steal for your own game
5:17
Nitro-Gen Studios
Рет қаралды 5 М.
I Wish I Had Known This Before I Started Unity Game Development...
11:11
Watching GameDev Tutorials Be Like...
9:23
Mental Checkpoint
Рет қаралды 218 М.
The BEST Unity Game Dev Advice I Wish I'd Heard Before…
12:40
ButWhyLevin
Рет қаралды 21 М.
The Trick I Used to Make Combat Fun! | Devlog
8:12
Game Endeavor
Рет қаралды 1,5 МЛН
Why Does Celeste Feel So Good to Play?
17:34
Game Maker's Toolkit
Рет қаралды 2,6 МЛН
Game Dev Mistakes that DESTROY Your Game
6:41
StayAtHomeDev
Рет қаралды 16 М.
How Neuralink Works 🧠
0:28
Zack D. Films
Рет қаралды 27 МЛН
Главная проблема iPad Pro M4 OLED!
13:04
THE ROCO
Рет қаралды 49 М.
Эволюция телефонов!
0:30
ТРЕНДИ ШОРТС
Рет қаралды 5 МЛН