How to Improve a Games Performance to ‘Perfection’ | 10 Tips | Unity3D

  Рет қаралды 202,169

YagmanX

YagmanX

Күн бұрын

Пікірлер: 409
@yagmanx
@yagmanx 3 жыл бұрын
Learn from my mistakes in this post mortem of my first Unity game, Perfection, and learn tips to improve your own games performance! Check out the free horror indie game Perfection: yagmanx.itch.io/perfection Apologies that some of the examples are low quality, I also wrote this post mortem in a written blog with higher quality images as references to all of the points made: medium.com/@yagmanx/10-tips-how-to-improve-a-unity-games-performance-to-perfection-noob-friendly-9b906082bf82
@themarlboromandalorian
@themarlboromandalorian 2 жыл бұрын
Well you're stupidly good looking. And a genius by the looks of things. You won the jackpot by all standards.
@VladIDrago
@VladIDrago 2 жыл бұрын
Ok, made in Unreal I hate Unity...(the interface is total from '90s).
@davedogge2280
@davedogge2280 2 жыл бұрын
This is great reminds me of Brackeys who I miss.
@yagmanx
@yagmanx 2 жыл бұрын
@@davedogge2280 Thank you, that's a wonderful compliment as I also miss Brackeys! His videos helped me so much throughout my university course
@tylerhurdle
@tylerhurdle 2 жыл бұрын
@@themarlboromandalorian There's a time and a place for every statement. You succeeded at neither the time, nor the place. 👎
@keftarkbarin9362
@keftarkbarin9362 2 жыл бұрын
If you want your GameObjects to be visible without being public, you can put [SerializeField] before. It will be visible in the inspector but still private.
@FlotzOnYou
@FlotzOnYou Жыл бұрын
It's not performance related, but using public is bad practice in 90% of cases. Using serializedField + Setters and Getters is a much better approach for clean code and decoupling
@tropochito
@tropochito Жыл бұрын
Or use Dependency Injection and get rid of the 90% of the inspector setups
@regular-user
@regular-user Жыл бұрын
I had no idea I was using dependency injection until you mentioned this and it triggered my curiosity, so I googled it to see what it was. I am someone who tries to think before coding to see if there is any other way I could do something to minimize code and improve readability. Crazy how the mind comes from alone to these solutions and you don't even know there is always an existing term for that.
@chrono9503
@chrono9503 Жыл бұрын
@@FlotzOnYou why is using public bad?
@FlotzOnYou
@FlotzOnYou Жыл бұрын
@@chrono9503 because it's not the right encapsulation most of the time. Public means the property is exposed to reading and writing by a foreign class, which you don't want most of the time
@BerndXYCV
@BerndXYCV 2 жыл бұрын
I'm maybe a bit late on this video but one thing that helped me a lot when i started, was learning about Object Pooling. Basically if you have certain objects that have to appear and then disappear frequently (like enemies for example that appear when spawning and disappear when dying), instead creating and destroying the object simply activate it and deactivate it. Usually i have a script that manages a certain amount of objects that are deactivated on the start of the game and when i need one or multiples of it, I ask the ObjectPoolManager for those objects, set them active, set up any components they might need, initialize their starting parameters and send them on their way. And if they have to disappear, just deactivate them because the ObjectPoolManager has a reference to them and can easily find them for future activation.
@aussieraver7182
@aussieraver7182 Жыл бұрын
Very powerful!
@theoriginalstarwalker1653
@theoriginalstarwalker1653 10 ай бұрын
Thank you
@patricktalksalot427
@patricktalksalot427 2 жыл бұрын
This is so extremely helpful! When I'm watching other devlogs they always get to a point where they simply "optimize", but they never explain what there doing! This is an extremely useful checklist to go through for all your games and I definitely plan to integrate this into my workflow! Thanks again for the great video!
@yagmanx
@yagmanx 2 жыл бұрын
Glad it was helpful!
@johnmccarrick3123
@johnmccarrick3123 2 жыл бұрын
Currently embarking on my third attempt for making a game in unity - your channel is a life saver! I had no idea you could use layers for 3D elements!
@bradjones7491
@bradjones7491 2 жыл бұрын
if you write a bit of code you can actually add sorting orders to 3d meshes as well which is incredibly useful and I never understood why it wasn't buitlin.
@K0r0k0_17
@K0r0k0_17 2 жыл бұрын
Hey there, just an extra tip. I see a lot of professional games using different meshes for an object visual aspect and its collisions. Making a simpler more lightweight mesh for an object's collisions could help you optimize the game a bit while keeping mesh colliders.
@yagmanx
@yagmanx 2 жыл бұрын
This is a very good point! Thanks for pointing it out :)
@bradjones7491
@bradjones7491 2 жыл бұрын
would still be more performant to just use a box collider or set of box colliders, the code that has to run for mesh collision is just more advanced than checking if a point is within the bounds of a cube.
@0xlapras646
@0xlapras646 2 жыл бұрын
@@bradjones7491 Any documentation on the algos used for that calculation? I'm certainly curious what the Big-O is (you are certainly right, Im just curious to what extent the difference in performance is)
@bradjones7491
@bradjones7491 2 жыл бұрын
@@0xlapras646 I mean you would just have to look up how to do it from scratch, but checking boundaries of a cube is mathematically significantly simpler than check the bounds of a complex mesh. for example you could easily determine if a point falls within a volume of 1, but a mesh collider has a non standard volume so you would first have to determine the volume before checking the bounds. Mesh colliders are used extremely sparingly in general, and mostly just for simple shapes like ramps and sometimes terrain. As for the extent of the difference I couldn't say for sure but I'd assume it would be fairly significant since almost every AAA game in existence utilizes the multiple simple colliders method. Mesh colliders should only really be used when the alternative is prohibitive, such as with a massive object like a terrain, where aligning individual colliders would take thousands of hours. Basically mesh colliders are time savers, but are overutilized by people who get lazy, and by doing just a bit more manual setup you can often avoid the additional overhead. Another thing to consider is that often times mesh colliders fail at detections where a box collider would not. While it's pretty unordinary and example of this can be achieved by moving an object at incredible speeds, if the wall is a mesh collider it has a significantly higher rate to allow the object to pass through than a cube. and This is because mesh colliders don't really have thickness so if the physics calculation somehow places that object on the other side then the collision will not be detected, whereas with a cube the object would need to reach significantly higher speeds to breach it's entire bounds, and you could make a wall have theoretically infinite thickness to make it basically impossible to clip into. As a side note about the fail rate of physic detection this mostly occurs because physics calculations are done on an independent update loop that has it's own time scale so a significantly large movement in a single update of that tick function could offset the object further than the collision is detecting thereby avoiding the collision detection entirely. This is because most physics systems don't calculate along the traveled vector when determining collision, rather they only check for the position at that frame of the tick update. That is to say, that if an object moves farther than the entire collision's size in less than 1 physics update tick, then that collision will not be detected. That also leads into another slight tangent about unity in particular, where people think that unity's physics engine is very inaccurate, but this is actually mostly caused by people never changing their physic's tick rate under the time settings in unity. By default I believe it is set to a tick rate of 0.10 which is 10 frames per second and is pretty inaccurate, allowing for most "fast" speeds to easily clip through collisions.
@emonikino
@emonikino Жыл бұрын
19:36 i know its a bit late to respond but in case someone need it: the use of "find" in the "awake" will not necessarily degrade the performance of your game. it depends on what script using it. if you use "find" in a singleton, it will be fine. just don't use "find" in a script attached to dynamic game object. another thing, if possible, try to use "FindObjectOfType" instead of "Find". i use "find" in the awake method of my level scene. although its not a singleton, but i consider it safe to put it there. no one will notice additional 0.5 sec delay during the scene loading :D
@AcrylicPixel
@AcrylicPixel 3 жыл бұрын
Very informative! With a background in 3D I was shocked at the number of polys on the plant. But if you don’t have a background in 3D it’s not very shocking I guess. Glad to see the improvements worked!
@yagmanx
@yagmanx 3 жыл бұрын
Thanks I'm glad to hear it. Yes, it was quite a shock! Had to just remove that plant in the end 😅
@MFKitten
@MFKitten 2 жыл бұрын
When you see the kind of optimizations and efficient modelling methods used in AAA games, you realize how much devs strive to minimizes polys and stuff. I've seen wireframe models of things that shocked me, because it did NOT look like it was that low poly in-game!
@OverAndOverAndOver
@OverAndOverAndOver 2 жыл бұрын
Just from personal modeling experience and 2 years of a grade school 3d class, I too was blasted back by the polys of the plant 😂
@bradjones7491
@bradjones7491 2 жыл бұрын
@@MFKitten you'd be amazed at what a good texture/shader combo can do.
@Dylan-go5iv
@Dylan-go5iv Жыл бұрын
@@yagmanx I know I'm super late here but on the subject of that plant (and other models with similar poly count issues): On your decimate modifier at 7:19 you could select the "Planar" option and set its Delimit mode to "UV". This would decimate the model whilst performing calculations favoring the original UV layout more than other options would. Obviously not as good as making a low-poly version yourself, but it's a closer result that can work just fine with many basic props.
@paliing
@paliing Жыл бұрын
I don't know what I'm doing when it comes to programming(and anything else) but this video was sooo good. You've structured and inform everything in a super easy a digest way. You go sister!
@EckosamaGhostTsushima
@EckosamaGhostTsushima 3 жыл бұрын
i followed you back when i was into programming and trying to make games. i switched back to what i have been doing for almost 2 decades which is art and making art, possibly for games. but i am alot happier. there are people who should create the code and there are people who like concepts only and not the technical and admirably complicated part of the game making process. seeing this makes it look even more layered than i had remembered. still love games though and happy to see what you are working on. my life was so much worse when i first started watching your videos. its gotten better but i am a ways off from my artistic goals. keep uploading videos especially upcoming projects related, its always cool to see.
@yagmanx
@yagmanx 3 жыл бұрын
This is really interesting to know. I'm so glad you're in a better place now, it can take a long time to know what really makes us happy. Best of luck for your future :)
@jvukovic4
@jvukovic4 2 жыл бұрын
you should try unity bolt
@ImScorpy
@ImScorpy Жыл бұрын
Helped me a lot! Especially the part where you mentioned that every single mesh in your game was a separate mesh despite them being exactly the same. I went through the many buildings in my game and noticed that every single one had a separate mesh (something dumb that probuilder did), so I made all of them into a single mesh and it helped an unholy ton with the performance!
@janda2304
@janda2304 Жыл бұрын
I suggest doing probuilder - export and export all of those meshes to a fbx or obj file. Afaik probuilder for some stupid reason rebuilds your meshes at runtime every single time the game (scene) is loaded.
@ImScorpy
@ImScorpy Жыл бұрын
@@janda2304 Would be good if more game dev tutorials would warn you about it lol. In my first few days of Unity I was told to use probuilder and only 2 years later am I finding out it's a bad idea
@Sancarn
@Sancarn 2 жыл бұрын
22:09 - "If you know a better way than to turn things off with collision let me know" - I'd imagine that the best way is finding if the centroid of your player is within a bounding box. I'm not sure how you'd do this in unity though, but even using collision with a point object would be better than collision with your player object.
@riperchetobg
@riperchetobg 2 жыл бұрын
Collision detection with triggers would be better, due to unity using an octree internally to do the same thing a lot more optinized
@TheDrsalvation
@TheDrsalvation 2 жыл бұрын
As for LOD'ing, I find it better to have the high quality / mid quality / absolute low quality. Mid quality should be the default, high should only be shown in either cutscenes or when very close to the model, so make sure your decimated models are in the 'mid' quality to make it the default. Low quality should be barely there, just to indicate that something's there. The best way to verify LODs is by switching to wireframe mode (or use wireframe selection) and move the camera backwards until the wireframe becomes a solid color, then you can switch to a lower LOD. I've seen asset store models that use like 5 LODs which is doing its job to optimize, but not as good as it COULD be, by having that many different models compared to all the vertices rendered at real time, the 2nd and 4th LODs will barely make any difference, but just add heap to memory, which as I said, still optimizes, but it nerfs the potential result.
@rexxthunder
@rexxthunder 11 ай бұрын
I'm an effects artist, you can also batch particle materials by making basically a sprite sheet of textures and using the separate cells as particle textures. This is really good for mobile effects.
@rexxthunder
@rexxthunder 11 ай бұрын
...and use one material.
@hldfgjsjbd
@hldfgjsjbd 10 ай бұрын
Instead of checking in update for events, use actual events. Also, read documentation. You don’t need, for example, find object with name “Camera”, use Camera.main. And avoid using strings as parameters at all costs. What if you renamed your object or have object with same name? Right. Always think ahead when coding
@alexdacat
@alexdacat 2 жыл бұрын
The way you are decimating the models is perfect for LOD! I would highly suggest checking it out if you haven't already.
@alfonzo6320
@alfonzo6320 8 ай бұрын
The fact that you exists gives me hope lol. i'm not chasing unicorns lmao! Ooh, and nice tutorial btw !
@manzdeh
@manzdeh 3 жыл бұрын
Great video! I know it’s been a lot of work to get it to this level of performance, and I commend you for your hard work and dedication. It’s not easy to go back to an old project and work on it again after many months/years have gone by, so amazing work! I work as an engine programmer myself and, as you can imagine, performance matters a lot to me. So for me it was really nice to see a video like this and I hope you continue your journey into optimizations and performance. If you’re interested, one of the things you can look into is Data-Oriented Design. It’s a pretty interesting topic (at least to me😅) that approaches performance in terms of hardware characteristics and how memory works under the hood. I know Unity has an implementation of an ECS nowadays (which uses Data-Oriented Design principles behind the scenes). I don’t know how good or practical the implementation is, because I’ve never used it myself, but I believe they’ve really focussed on it heavily in recent years. So that might also be an interesting area to explore in the future.
@yagmanx
@yagmanx 3 жыл бұрын
Thank you for the advice!
@FlotzOnYou
@FlotzOnYou Жыл бұрын
Do you think such architecture can be relevant in this kind of game? I haven't deep dive into the topic yet, but to me it seems like only games with a massive amount of objects can really benefit from it (or in competitive multiplayers where performance is everything, but it sounds like hell to design and maintain)
@FenixCoffey
@FenixCoffey 3 жыл бұрын
Love to see that you're still around and uploading! Looking forward to giving this a watch! Even though I have absolutely 0 plans to do anything with the knowledge you're about to share with me, I love content like this. Always awesome to see behind the scenes on game development!
@MaximumAxiom
@MaximumAxiom 2 жыл бұрын
If I understand the problem correctly about the collision thing at 22:15 you might want to do a distance check between the object and the player first to see if the object is even close enough to worry if its colliding. If the player was moving really fast that might cause the player to move right through things but it didn't seem like a problem your game would deal with.
@Nazgul
@Nazgul 6 ай бұрын
Ok, I've watched this video for about 1-2 seconds and already.... clicked Like and subscribed! Thank you for instant atmosphere of joy and positivity.
@sassuskrassus3166
@sassuskrassus3166 Жыл бұрын
8:56 this is really Important for 3D Artists this was exactly the reason why my first game couldn't get higher than 20 fps I build my whole level in MAYA because my teacher never told me there is something called draw calls and the general workflow of 3D Assets / props for Game Engines My 3D models where optimized af and I didn't understand why my ~1000 poly assets killed the performance. No one told me the workflow that you usually only export the .fbx, then create a prefab / blueprint in Unity and not drawing every mesh multiple times into the scene and instead reuse them. Also a big problem was the materials. Materials are probably the main reason your fps drop like sh*t. Using multiple materials for example on a chair and not using base materials that can be drawn on many different assets for stuff like wood, metal etc. killed my performance. Before I knew there was something called color IDs I created a material for every single thing that had a slightly different color. And with over 200 Materials (2048px) I know now why I had 20 fps.. anyways I didnt understood why my relativ small scene had such bad performance but after hearing about drawcalls, materials optimization and a work of 20h we finally got a good performance ^^
@krishnansubramoni7801
@krishnansubramoni7801 2 жыл бұрын
Great video 🧡. I have one tip for artists and one for programmers: Here's a tip for any artist who is going to attempt to make a game - TAKE A COURSE IN PROGRAMMING! I work with and have had to optimize levels created by artists who didn't know the meaning of the word "performant". So please just take a small course in programming. It'll help you immensely. And for all the programmers out there, here's a different tip : complex =/= good. Don't write extremely complex, hard to read code if you can achieve the same result by simpler, more basic means. Keep It Simple and Stupid - K.I.S.S There are so many Unity store assets that are just horrible when used without thinking - both in terms of art assets, AND in terms of tools and systems. You would be surprised at the number artists who don't know what being performant means, and ALSO, you would be surprised at the number of programmers who don't know how to keep code simple and clean.
@TimM-kz1vl
@TimM-kz1vl Жыл бұрын
Holy crap this is so useful! I'll be honest that I had to pause every section and look up what you're talking about, but holy crap! I'm trying to make a low-poly action game that's as easy on computers as possible so this is insanely useful!
@Trashloot
@Trashloot 2 жыл бұрын
I currently have no use for this information but i love optimisation so much that i fully enjoyed the video. Great work :D Oh and i love the energy you bring to the video.
@Zoddom
@Zoddom 2 жыл бұрын
I didnt even understand like half of what you said, but for some reason I watched through the whole thing. Well written!
@qualix7
@qualix7 2 жыл бұрын
Wow. This video is awesome! I haven't even made a game yet, but I'm already spinning these ideas into my thought process for when I find myself working out how to implement features or problem solve. Very nice!
@yagmanx
@yagmanx 2 жыл бұрын
Thank you and good luck with any future games!
@qualix7
@qualix7 2 жыл бұрын
@@yagmanx thank you for the reply and the kickass video!
@DodZz666
@DodZz666 3 жыл бұрын
it s really cool watching your journey from a game fan to a professional game creator .... plz post more unreal & unity content
@raveli4342
@raveli4342 3 жыл бұрын
Hey, just wanna say thank you for this tips for designing Unity Games, right now im designing a tool for simulation of a hospital enviroment using unity and these tips really help a lot, hope to see more on game design tips !
@yagmanx
@yagmanx 3 жыл бұрын
I'm so glad to hear that these tips could help you! Best of luck for your tool :)
@digiross7199
@digiross7199 2 жыл бұрын
Great content, found it right before I start my first big project. Love your video style, quirkiness, personality. I'm now a fan. Much love!
@devilsolution9781
@devilsolution9781 2 жыл бұрын
Bit of a gold mine this, i watched it on sat after 10g of mushies and thought id landed in the future. This is great.
@apophissoftware
@apophissoftware Жыл бұрын
What I would add, and I know that my comment is a couple of years late but... One of the things I learned in optimizing our games was 1) use object pooling; and 2) never let the system do it's own Garbage Collection. Managed code, especially on non-pc platforms, will wait until the absolute last minute and then Collect. This invariably results in it dropping fps down to about 5fps for a second or two (dependent on the amount of garbage that the game makes). What you can do instead - put your own garbage collector (GC code) into a coroutine, and then adjust the timing to strike the best balance. (To anyone new, you don't want to run you GC every frame, because it has its own overhead; hence finding the optimal balance.) This is especially important if you destroy a lot of objects, especially ones that cannot be pooled. Like destructable scene objects, those wouldn't be pooled. Hope this helps out!
@mathieso2000
@mathieso2000 6 ай бұрын
Wow, great work! You're skilled in video making and explanation, as well as game dev. I want to be like you when I grow up. I'm only 64, so I have some growing up to do.
@azrhyga
@azrhyga Жыл бұрын
Awesome video showing the tips than you used for optimize your game!! Thanks for sharing it!! Also good luck working on "Perfection" new content!!
@musikalniyfanboichik
@musikalniyfanboichik 2 жыл бұрын
What's nice is that most of the stuff you say here actually applies to any other fully fledged engine as well (unreal for example).
@yagmanx
@yagmanx 2 жыл бұрын
I'm very happy to hear this and totally agree! I use Unreal too and learning all of these techniques myself has definitely helped keep my Unreal projects performant
@kira_io
@kira_io Жыл бұрын
really great video >w< i really need to use the profiler more. also your eye shadow is so good omg t_t
@PoorlyMadeSweater
@PoorlyMadeSweater 2 жыл бұрын
The global personality data workaround fixes the framerate issue, but introduces weird dependency issues. No bigs for a little game, but in a big game or if you want reusable code, you don't want your player to be controlling external systems. You can run into issues where multiple scripts are editing the same global values on top of one another, adding/removing/changing these external systems forces you to edit every script that references them, and if you want to bring the player script into a different game, you either have to bring the entire dependency chain, or refactor the player. A message bus (observer pattern style) is a great solution. Your player broadcasts that it jumps and any object listening for a "player jumped" event will do their thing. The player doesn't care who's listening, so the only dependency is the bus architecture. This will also help with juggling find commands.
@francescagreetham1804
@francescagreetham1804 2 жыл бұрын
Love the honesty with the light maps - really made me laugh. Faking it with post processing in this context sounds good to me 😂
@GalvenGoldwind
@GalvenGoldwind 2 жыл бұрын
Thank you for the tips and for breaking it down! Optimizing has always been a little bit of a mystery to me.
@XearosDisaster
@XearosDisaster 3 жыл бұрын
this was truly the most enjoyable video that i've ever watched the entirety of without understanding. :D this was presented really clearly and articulated accessibly.
@yagmanx
@yagmanx 3 жыл бұрын
Haha glad to hear it lovely 💖
@bergie8342
@bergie8342 3 жыл бұрын
Glad I caught your upload before work this time! I’m unsure about what I wanna do at the moment. But I know I want to go into digital art and have considered making my own game. But I don’t know a damn thing about making games, I’d rather work on the artistic side of things. This information is useful though, in case I do try to make something out of my ideas. Thanks, stranger. Take care and be safe
@yagmanx
@yagmanx 3 жыл бұрын
Take it one step at a time. It sounds like you know roughly what you want to do. Maybe just find a weekend to play around in unreal / unity and see how you find the game engine? Try and stick to small, manageable projects or even follow a tutorial and then mix it up to add your own style. Have fun! Wish you the best :)
@bergie8342
@bergie8342 3 жыл бұрын
@@yagmanx I’m unsure if those programs do it but I think if I ever do make a game it’d be pixelated. If you’ve ever heard of Octopath Traveller, that’s the closest thing I’ve seen to the art style I would like. Not exact, but definitely close to it. Not sure if those engines offer that kinda stuff. Either way it’s like 5 years away lol. Thank u stranger for your kind words
@B_dev
@B_dev 2 жыл бұрын
I always like to do a quick performance test after adding anything so that I intuitively know what's draining performance
@Kingstantin
@Kingstantin Жыл бұрын
Exactly what I needed to know to push the performance of my VR game. Thank you!
@XRelabs
@XRelabs 2 жыл бұрын
Thank you a million, you made the job easier in talking about all the optimization issues in one video, you made our life easier , thank you🙏 😍
@victor.novorski
@victor.novorski Жыл бұрын
Using Blender for a custom collider is definitely a W.
@javipamp
@javipamp 9 ай бұрын
Thank you so much for your sympathy, energy and shared knowledge. Great video!!
@ManusLlane
@ManusLlane 11 ай бұрын
Really great video. I love your enthusiasm about gamedev which I share and your tips were very well explained. Eye opener to be sure.
@o0Harryy0o
@o0Harryy0o 2 жыл бұрын
Doing some research before deciding whether to embark on my own game development journey. This has shown me there's a lot more to understand 😂
@zallesyn4686
@zallesyn4686 9 күн бұрын
pure gold for an aspiring game developer. very nice vid *sub
@ketchusenfu7572
@ketchusenfu7572 2 жыл бұрын
Never thought I'd fall in love through a Game dev tips video.
@eruchii7200
@eruchii7200 2 жыл бұрын
Finally, a real solution to a real problem. Great Video!
@arifcandraprasetya3865
@arifcandraprasetya3865 Жыл бұрын
I'm using your videos as a citation on my thesis :))
@WeatbixZ
@WeatbixZ 3 жыл бұрын
This wouldve taken ages to refactor and then you made a whole 30min video about it to 🤯 I wouldve given up at after looking at the profile haha. Kudos to you!
@yagmanx
@yagmanx 3 жыл бұрын
Haha honestly, I almost gave up a few times but I'm too stubborn 😂 Thank you for noticing the hard work that went into it. I hope it can be helpful 😊
@ThankYouESM
@ThankYouESM 2 жыл бұрын
Awesome work altogether. If you weren't a computer programmer... many of my friends and I would have absolutely mistaken you for somebody else we met, whereas the main difference... the other seriously thinks of herself as the most perfect there is, meanwhile... also told me I'm stupid not to ever become her man.
@elijahhamilton1920
@elijahhamilton1920 2 жыл бұрын
Thank you , you have no idea how much this helped and on what project!!! You are amazing have a great day.
@harry6270
@harry6270 2 жыл бұрын
Thank you so much! I learned so much in this video and my framerate, on average, has increased by 20fps. Until this video, I didn't know about Occlusion Culling so I decided to write a script that would only render parts of the level the player was in. It was basically a worse version of Occlusion Culling. Soooo there goes hours of my life I will never get back.
@sashamakeev7547
@sashamakeev7547 2 жыл бұрын
3:45 inactive gameobjects dont get their Update called 8:08 Loding can be used with decimated models like that plant with 6 steps unsubdivide. You just put good looking upclose model in LOD0 and that ugly polygons in LOD1 and set distances. This way plant will be ugly at distance but it wont be noticable cause there wont be enough pixels to show its uglyness
@MegamanXGold
@MegamanXGold 2 жыл бұрын
Please correct me if I am wrong. To add to this comment for future readers: I think it would be good to define "inactive" here. This would be a GameObject or an ancestor that has enabled set to false, or SetActive(false), or if the specific script component with the Update() is disabled. Since Occlusion Culling was a topic in the video, I believe a mention here is helpful. A culled object just has it's Renderer disabled, but its scripts and colliders might still be running and so is, therefore, active.
@bradjones7491
@bradjones7491 2 жыл бұрын
@@MegamanXGold both works, if you disable the script then it won't run the update function, if you disable the gameobject none of the components including scripts will run (there are some exceptions such as certain events).
@bradjones7491
@bradjones7491 2 жыл бұрын
you could take it a step further and just replace the model with a 2d image if it's far enough away and people probably won't notice.
@cornelius600
@cornelius600 2 жыл бұрын
this video was Perfection
@user-em9su3dd9y
@user-em9su3dd9y 2 жыл бұрын
Super useful tips - thanks! Can feel the game breaking bug "kick in the face"...
@midicreations2813
@midicreations2813 2 жыл бұрын
Thanks for your tips, I had to optimize my game for the Oculus Quest. Very important: remove mesh colliders from models that you buy, sometimes they come by default with mesh colliders and you even dont know.
@y01cu_yt
@y01cu_yt 11 ай бұрын
Thanks for sharing your experiences with us!
@jx4219
@jx4219 2 жыл бұрын
19:50 "I thought i was smart for using Find() because i didn't want to put in all those references." Same, i also hate references by hand. It also introduces new points of failure. What i do since recently is this: 1. [HideInInspector] GameObject object; 2. if(object == null) Find("ObjectName"); HideInInspector is like a SerializeField. So it will keep it's value but is hidden. Though i usually don't use Find. Just GetComponent and i also [RequireComponent] that component. This way it's failsafe. I try to make my scripts in a way that you can just slap them on and don't have to remember providing anything.
@SandorClegane-TheHound
@SandorClegane-TheHound Ай бұрын
Better script off button :- Layermask and coroutine Reroute the routine through itself so for example Coroutinename() Yield return new waitforseconds (2f) If(layermask.Equals(stoodupon); { Turnoff(); //logic to turn off stuff Resetroutine(); // don't do it inside itself youll get a stack overflow Yield break //this stops garbage } And there we go Set up a layer on the ground or the door you want to turn stuff on with Make a.simple.check in your update on your movement controller If mask is stood on set.bool Stood upon =!stood upon This way your only calling a check once every two seconds Instead of 120 times every 2 seconds Hope it helps Play with it Coroutines are powerful tools 🔧 👏 Edit You may write another coroutine for the bool switch that also only happens once every 2 seconds instead of update too Though it's a single line of code and won't affect performance but a touch
@cameron2538
@cameron2538 2 жыл бұрын
3:37, I think that burp was important for you to keep in. It addresses the underlying point of this video. Taking a step back to flush out the unnecessary processes. Your burp was akin to the background processes that hadn’t been ironed out and were just floating around inside the game.
@cakeu
@cakeu 2 жыл бұрын
it also scared the shit out of me!
@lexxynubbers
@lexxynubbers 2 жыл бұрын
Very well explained at a level that I find accessible.
@angeldeathz112
@angeldeathz112 3 жыл бұрын
Woow very nice, It's interesting to see you working with unity in your channel, I love c# so this video it's more interesting for me ;)
@redflag4255
@redflag4255 2 жыл бұрын
Really informative! Gret work putting this together
@androvictrayo-dy7eh
@androvictrayo-dy7eh Ай бұрын
Love the fact that she made it very relatable 😆
@CosplayZine
@CosplayZine 2 жыл бұрын
Hello, perhaps if something is not active in your scene or a script hasn't been activated yet then you can turn off other things in your scene based on a specific variable rather than relying on those collision boxes to turn off others. So basically a variable can be changed when someone enters a door and the code can check if the door script is now active or if the variable is true ( for example) and then have it effect another variable which will turn certain collisions off (once again, for example).
@MegamanXGold
@MegamanXGold 2 жыл бұрын
Setting up game events might be better than setting variables that need to be frequently checked. var doorOpened = new Event(); void DoStuff() { // stuff } doorOpened.AddListener(DoStuff); void OnDoorOpened() { doorOpened.Invoke(); } The example could be better but I'm not at my PC. Worth checking out, though :)
@michaelslattery2273
@michaelslattery2273 Жыл бұрын
22:25 - 9: Optimise GameObject Components. great, no rigidbodies needed except for player and enemies, a box collider will do for platforms and ground. thanks for the tip
@moazanamjad4072
@moazanamjad4072 2 жыл бұрын
I see you have used Unity.Random to randomize Lights but they become very jittery to achieve smooth randomness you may want to look into Perlin Noise (Mathf.Perlin).
@yagmanx
@yagmanx 2 жыл бұрын
Thank you! I shall use this in the future!
@3d8bits44
@3d8bits44 Жыл бұрын
Thank you for sharing, I will release a small indie game soon, and your advice was really helpful!
@MatthewLT420
@MatthewLT420 4 ай бұрын
Lod is a simple as naming your best level of detail whatever you want but make sure it ends in _LOD0 and repeat from 1-3 in lowering quality.
@Wolfie5309
@Wolfie5309 2 жыл бұрын
Lots of good information. Have a new subscriber!
@kortvelyin12
@kortvelyin12 Жыл бұрын
The mesh collider bit is actually so important, it's asked in job interviews. Usually something like which collider is best for performance? It's the box collider. Honestly I thought this is basic knowledge, how did you not meet with this bit of information?
@mehdiali8187
@mehdiali8187 2 жыл бұрын
Hi, About 4: Optimise Your Models, when you Retopology in blender with the decimate modifier (or any other way like manually or with Add On's that do a really better job like Quad Remesher (payed) or Instant Mesh (free) ) you should bake the texture maps (Color and Normal specially and the others depends on what's available like AO, Cavity, Roughness, Metallic) from the original model to the new one and if both of the models share the same silhouette they will be identical after rendering (in game).
@bradjones7491
@bradjones7491 2 жыл бұрын
not exactly identical but it does carry over a ton of detail.
@FlotzOnYou
@FlotzOnYou Жыл бұрын
Awesome video! Thanks! I see many people have commented, but my 2 cents are: do NOT check for null on update or any frequent called function, as it's heavy on the machine. Instead, it's better to use an extra bool variable to keep track if the nullable variable is null or not 🙂
@rohrichoak9740
@rohrichoak9740 2 жыл бұрын
Been using Unity for almost over one year now. If Blender Game Engine still existed, but better, I wouldn't, tho. Still Unity is the best free alternative there is. I recall BGE being super limited as far as performance is concerned, not to mention its asset limitations. The fact that you could model right there and then just use the model directly and its logic bricks that did wonders with no script required were awesome. I love coding anyway.
@TracknJoy
@TracknJoy 2 жыл бұрын
Salut Bigkam! Heureux que tu as aimé la Pixel Days qui reste en 2022 un must! Vraiment honoré de t'avoir croisé et d'avoir tourné une vidéo qui (spoil) sortira mardi 3 mai! En espérant pouvoir à mon tour me déplacer chez vous, à la Hedge convention par exemple j'en rêve! A plus l'ami Alexis
@christopherhodge
@christopherhodge 2 жыл бұрын
Great video on some optimization fundamentals. I'd also look into Tasks as an alternative to coroutines. They offer things that coroutines can't like return values, and they work asynchronously so you can await on them. A little bit trickier to implement, but you won't be sorry for learning it. Also, Camera.main will return you the main camera, so you don't need to FindObjectOfType, but a better approach may be to use a singleton pattern to manage things you need direct access to, or a static class which can store information you use consistently. Great video though and good luck with your game :)
@Lordilucas12
@Lordilucas12 2 жыл бұрын
aren't tasks internally ran kind of like coroutines? It might be easier to optimise code with tasks but it's not directly faster right?
@christopherhodge
@christopherhodge 2 жыл бұрын
@@Lordilucas12 Very similar in terms of operation, but less garbage collection with Tasks (and less garbage collection ultimately means faster), and they have more options for returns / awaits. They are a little trickier to use, but they are also a little cleaner to use once you have it setup. It really depends on the use case you are after.
@PhaaxGames
@PhaaxGames 2 жыл бұрын
Coroutines CAN have return values, you just have to write your own StartCoroutine alternative which intercepts the return ... Here's a pseudo-code example of how it works: if ( coroutine.MoveNext() && coroutine?.Current is T returnValue ) { return returnValue; }
@diablo930
@diablo930 2 жыл бұрын
Really nice recap useful for all type of users !
@arabcode3807
@arabcode3807 2 жыл бұрын
I started watch the video for fix my game but after few moments i found my self just looking at you and forggot the toturial so beautifull 🥺
@6ix6ix6ix6ix6ixx
@6ix6ix6ix6ix6ixx 2 жыл бұрын
6 Ways To Guard Your Energy 1. Trust with your intuition 2. Don’t engage in negative gossip 3. Go in nature you’ll never be alone 4. Meditation 5. Eat Clean 6. Don’t sleep next to your phone
@Devorkan
@Devorkan 4 ай бұрын
You really managed to implement all the worst performing methods in that game It's a great experience though, thanks a lot for sharing!
@TheKustomphaq
@TheKustomphaq 2 жыл бұрын
Pretty good! Unity beginners should see this video! BTW, you should switch your unity editor to Dark theme :)
@enitalp
@enitalp 2 жыл бұрын
converting the material of repeating object to material instance, ca would improve greatly performance without changing polycount . very well done video.
@Daviality
@Daviality Жыл бұрын
Thank you for this helpful Video! 👍 I'm working as a XR Developer and I had performance issues with my game on my standalone PICO VR Headset, where high FPS is needed.
@Hieraldrich
@Hieraldrich 4 ай бұрын
Culling techniques like frustum and occlusion and lods for foliage are important for performance.
@lawrence4301
@lawrence4301 Жыл бұрын
this is so fucking good/helpful, thank you/please release more shit appreciate the broad range of things you cover for performance savings & real life example
@devforfun5618
@devforfun5618 2 жыл бұрын
use a library to find game objects, if the object isn't in the library, search and add it, then you will not need to do that again until you reload the scene
@TimM-kz1vl
@TimM-kz1vl Жыл бұрын
Good lord I'm glad to hear about toher people who've had nuclear bomb levels of bugs. My first game that I didn't know how to fix, suddenly developed this massive lag spike whenever enemies spawned and I enver figured out why. It DESTROYED me.
@donyjunior
@donyjunior 2 жыл бұрын
What an adorable burp! Loved it!
@Mrjononotbono
@Mrjononotbono 2 жыл бұрын
Thank you! Great video. I’m a beginner and this has been so helpful. :)
@KiliGraphics
@KiliGraphics 2 жыл бұрын
LODs are so important. You dont need to render your models in a perfect way if you can barely see them. It makes no difference if they look ugly from near on when you are too far away to notice.
@TheIndieGamesNL
@TheIndieGamesNL 2 жыл бұрын
Lods are great just take allot of work constantly decimating multiple lower poly models for each object can take a long time' although ultimately worth it
@dcry1003
@dcry1003 2 жыл бұрын
so does that mean dev's who specialized in low poly games have an advantage or are they still required to have their object have LOD?
@greenislegames
@greenislegames 2 жыл бұрын
@@dcry1003 It's certainly easier to get away with no LODs if you're dealing with low-poly models, but low-poly can vary by quite a bit, so you can still try it for the more detailed meshes that you have and see if it improves performance.
@DeathGOD7
@DeathGOD7 3 жыл бұрын
Found this channel from BE AMAZED and its quite good... game dev + gameplay sign me up...
@yagmanx
@yagmanx 3 жыл бұрын
Thanks for checking the channel out ☺ glad you like the content!
@TYNEPUNK
@TYNEPUNK Жыл бұрын
great optimisation tips and well described. cheers.
@Havie
@Havie 2 жыл бұрын
The polish and big fixing phase is brutal , doing this on 3 projects at once rn 😭
@bradjones7491
@bradjones7491 2 жыл бұрын
You can actually hook your scripts into the occlusion events to make them turn off when the object is occluded by the camera, not always practical but when it is it saves immense time and performance. You could attach that to all the interactables in your game for example and the detection code input will only run when the object is being rendered, on top of that you could go a step further even and have entire gameobject turn itself off and on, which means non of those components are taking up performance unless they are being rendered. This will probably give you a good 30 fps if done right. I once made a 2d game in unity that ran at 500fps using optimizations and turning off vsync, obviously not practical but it was mostly to a test for myself to see how optimized I could get something to run. Funny thing was if the game was paused the frame rate counter actually went all the way to infinity.
@markhenry3794
@markhenry3794 6 ай бұрын
I am a newbie in game dev but im glad i didn't made these mistakes. whenever i try new thing i search online how it affects performance. like when i needed colliders i searched and found out that mesh colliders are expensive and boxcollider are better. i think i have a mental disease where everything have to be perfect 😂. right now im working on a project and im using object pool and everything to improve performance but if i don't do it it will not have huge impact on performance but still i want it to be perfect. 😅 and i don't have a beast pc. 😅
@TheMeeelting
@TheMeeelting 2 жыл бұрын
Cool video! Here's another solution for the next time you run into GameObject.Find issues: make a script that adds the Gameobject you need, into a static Dictionary, in an awake method, in some class of your choice then you can access that gameobject from anywhere just using yourclass.yourDictionary["name_of_gameobject"] - as long as awake has been run you'll be able to find it Kind of a hack, but quite simple and fairly robust. You just gotta make sure the object names are unique. You can find and remove the object from the dictionary using an ondestroy method. Clear the dictionary out on a scene change. And never use that dictionary in an update loop. (to get away from GetComponent stuff you could always just slap the component itself into the dictionary and then cast it as necessary)
Watch This Before Working on a Big Game in Unity
18:44
John Leorid
Рет қаралды 301 М.
6 Game Design Mistakes You MUST Avoid
18:22
Thomas Brush
Рет қаралды 67 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 16 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
BAYGUYSTAN | 1 СЕРИЯ | bayGUYS
37:51
bayGUYS
Рет қаралды 1,6 МЛН
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 33 МЛН
When Optimisations Work, But for the Wrong Reasons
22:19
SimonDev
Рет қаралды 1,1 МЛН
Why The Longing Takes Four Hundred Days to Play
20:45
Adam Millard - The Architect of Games
Рет қаралды 7 МЛН
Unity Code Optimization - Do you know them all?
15:49
Tarodev
Рет қаралды 199 М.
Optimizing my Game so it Runs on a Potato
19:02
Blargis
Рет қаралды 677 М.
What I Did To Optimize My Game's Grass
8:13
Acerola
Рет қаралды 137 М.
When Your Game Is Bad But Your Optimisation Is Genius
8:52
Vercidium
Рет қаралды 1,5 МЛН
How Games Have Worked for 30 Years to Do Less Work
23:40
SimonDev
Рет қаралды 1,4 МЛН
6 Years of Learning Game Development
17:20
Cobra Code
Рет қаралды 246 М.
How To Render 2 Million Objects At 120 FPS
14:57
Tarodev
Рет қаралды 150 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 16 МЛН