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
@themarlboromandalorian2 жыл бұрын
Well you're stupidly good looking. And a genius by the looks of things. You won the jackpot by all standards.
@VladIDrago2 жыл бұрын
Ok, made in Unreal I hate Unity...(the interface is total from '90s).
@davedogge22802 жыл бұрын
This is great reminds me of Brackeys who I miss.
@yagmanx2 жыл бұрын
@@davedogge2280 Thank you, that's a wonderful compliment as I also miss Brackeys! His videos helped me so much throughout my university course
@tylerhurdle2 жыл бұрын
@@themarlboromandalorian There's a time and a place for every statement. You succeeded at neither the time, nor the place. 👎
@keftarkbarin93622 жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
Or use Dependency Injection and get rid of the 90% of the inspector setups
@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 Жыл бұрын
@@FlotzOnYou why is using public bad?
@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
@BerndXYCV2 жыл бұрын
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 Жыл бұрын
Very powerful!
@theoriginalstarwalker165310 ай бұрын
Thank you
@patricktalksalot4272 жыл бұрын
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!
@yagmanx2 жыл бұрын
Glad it was helpful!
@johnmccarrick31232 жыл бұрын
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!
@bradjones74912 жыл бұрын
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_172 жыл бұрын
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.
@yagmanx2 жыл бұрын
This is a very good point! Thanks for pointing it out :)
@bradjones74912 жыл бұрын
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.
@0xlapras6462 жыл бұрын
@@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)
@bradjones74912 жыл бұрын
@@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 Жыл бұрын
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
@AcrylicPixel3 жыл бұрын
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!
@yagmanx3 жыл бұрын
Thanks I'm glad to hear it. Yes, it was quite a shock! Had to just remove that plant in the end 😅
@MFKitten2 жыл бұрын
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!
@OverAndOverAndOver2 жыл бұрын
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 😂
@bradjones74912 жыл бұрын
@@MFKitten you'd be amazed at what a good texture/shader combo can do.
@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 Жыл бұрын
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!
@EckosamaGhostTsushima3 жыл бұрын
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.
@yagmanx3 жыл бұрын
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 :)
@jvukovic42 жыл бұрын
you should try unity bolt
@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 Жыл бұрын
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 Жыл бұрын
@@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
@Sancarn2 жыл бұрын
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.
@riperchetobg2 жыл бұрын
Collision detection with triggers would be better, due to unity using an octree internally to do the same thing a lot more optinized
@TheDrsalvation2 жыл бұрын
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.
@rexxthunder11 ай бұрын
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.
@rexxthunder11 ай бұрын
...and use one material.
@hldfgjsjbd10 ай бұрын
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
@alexdacat2 жыл бұрын
The way you are decimating the models is perfect for LOD! I would highly suggest checking it out if you haven't already.
@alfonzo63208 ай бұрын
The fact that you exists gives me hope lol. i'm not chasing unicorns lmao! Ooh, and nice tutorial btw !
@manzdeh3 жыл бұрын
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.
@yagmanx3 жыл бұрын
Thank you for the advice!
@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)
@FenixCoffey3 жыл бұрын
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!
@MaximumAxiom2 жыл бұрын
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.
@Nazgul6 ай бұрын
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 Жыл бұрын
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 ^^
@krishnansubramoni78012 жыл бұрын
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 Жыл бұрын
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!
@Trashloot2 жыл бұрын
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.
@Zoddom2 жыл бұрын
I didnt even understand like half of what you said, but for some reason I watched through the whole thing. Well written!
@qualix72 жыл бұрын
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!
@yagmanx2 жыл бұрын
Thank you and good luck with any future games!
@qualix72 жыл бұрын
@@yagmanx thank you for the reply and the kickass video!
@DodZz6663 жыл бұрын
it s really cool watching your journey from a game fan to a professional game creator .... plz post more unreal & unity content
@raveli43423 жыл бұрын
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 !
@yagmanx3 жыл бұрын
I'm so glad to hear that these tips could help you! Best of luck for your tool :)
@digiross71992 жыл бұрын
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!
@devilsolution97812 жыл бұрын
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 Жыл бұрын
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!
@mathieso20006 ай бұрын
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 Жыл бұрын
Awesome video showing the tips than you used for optimize your game!! Thanks for sharing it!! Also good luck working on "Perfection" new content!!
@musikalniyfanboichik2 жыл бұрын
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).
@yagmanx2 жыл бұрын
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 Жыл бұрын
really great video >w< i really need to use the profiler more. also your eye shadow is so good omg t_t
@PoorlyMadeSweater2 жыл бұрын
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.
@francescagreetham18042 жыл бұрын
Love the honesty with the light maps - really made me laugh. Faking it with post processing in this context sounds good to me 😂
@GalvenGoldwind2 жыл бұрын
Thank you for the tips and for breaking it down! Optimizing has always been a little bit of a mystery to me.
@XearosDisaster3 жыл бұрын
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.
@yagmanx3 жыл бұрын
Haha glad to hear it lovely 💖
@bergie83423 жыл бұрын
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
@yagmanx3 жыл бұрын
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 :)
@bergie83423 жыл бұрын
@@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_dev2 жыл бұрын
I always like to do a quick performance test after adding anything so that I intuitively know what's draining performance
@Kingstantin Жыл бұрын
Exactly what I needed to know to push the performance of my VR game. Thank you!
@XRelabs2 жыл бұрын
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 Жыл бұрын
Using Blender for a custom collider is definitely a W.
@javipamp9 ай бұрын
Thank you so much for your sympathy, energy and shared knowledge. Great video!!
@ManusLlane11 ай бұрын
Really great video. I love your enthusiasm about gamedev which I share and your tips were very well explained. Eye opener to be sure.
@o0Harryy0o2 жыл бұрын
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 😂
@zallesyn46869 күн бұрын
pure gold for an aspiring game developer. very nice vid *sub
@ketchusenfu75722 жыл бұрын
Never thought I'd fall in love through a Game dev tips video.
@eruchii72002 жыл бұрын
Finally, a real solution to a real problem. Great Video!
@arifcandraprasetya3865 Жыл бұрын
I'm using your videos as a citation on my thesis :))
@WeatbixZ3 жыл бұрын
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!
@yagmanx3 жыл бұрын
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 😊
@ThankYouESM2 жыл бұрын
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.
@elijahhamilton19202 жыл бұрын
Thank you , you have no idea how much this helped and on what project!!! You are amazing have a great day.
@harry62702 жыл бұрын
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.
@sashamakeev75472 жыл бұрын
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
@MegamanXGold2 жыл бұрын
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.
@bradjones74912 жыл бұрын
@@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).
@bradjones74912 жыл бұрын
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.
@cornelius6002 жыл бұрын
this video was Perfection
@user-em9su3dd9y2 жыл бұрын
Super useful tips - thanks! Can feel the game breaking bug "kick in the face"...
@midicreations28132 жыл бұрын
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_yt11 ай бұрын
Thanks for sharing your experiences with us!
@jx42192 жыл бұрын
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Ай бұрын
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
@cameron25382 жыл бұрын
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.
@cakeu2 жыл бұрын
it also scared the shit out of me!
@lexxynubbers2 жыл бұрын
Very well explained at a level that I find accessible.
@angeldeathz1123 жыл бұрын
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 ;)
@redflag42552 жыл бұрын
Really informative! Gret work putting this together
@androvictrayo-dy7ehАй бұрын
Love the fact that she made it very relatable 😆
@CosplayZine2 жыл бұрын
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).
@MegamanXGold2 жыл бұрын
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 Жыл бұрын
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
@moazanamjad40722 жыл бұрын
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).
@yagmanx2 жыл бұрын
Thank you! I shall use this in the future!
@3d8bits44 Жыл бұрын
Thank you for sharing, I will release a small indie game soon, and your advice was really helpful!
@MatthewLT4204 ай бұрын
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.
@Wolfie53092 жыл бұрын
Lots of good information. Have a new subscriber!
@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?
@mehdiali81872 жыл бұрын
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).
@bradjones74912 жыл бұрын
not exactly identical but it does carry over a ton of detail.
@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 🙂
@rohrichoak97402 жыл бұрын
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.
@TracknJoy2 жыл бұрын
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
@christopherhodge2 жыл бұрын
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 :)
@Lordilucas122 жыл бұрын
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?
@christopherhodge2 жыл бұрын
@@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.
@PhaaxGames2 жыл бұрын
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; }
@diablo9302 жыл бұрын
Really nice recap useful for all type of users !
@arabcode38072 жыл бұрын
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 🥺
@6ix6ix6ix6ix6ixx2 жыл бұрын
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
@Devorkan4 ай бұрын
You really managed to implement all the worst performing methods in that game It's a great experience though, thanks a lot for sharing!
@TheKustomphaq2 жыл бұрын
Pretty good! Unity beginners should see this video! BTW, you should switch your unity editor to Dark theme :)
@enitalp2 жыл бұрын
converting the material of repeating object to material instance, ca would improve greatly performance without changing polycount . very well done video.
@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.
@Hieraldrich4 ай бұрын
Culling techniques like frustum and occlusion and lods for foliage are important for performance.
@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
@devforfun56182 жыл бұрын
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 Жыл бұрын
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.
@donyjunior2 жыл бұрын
What an adorable burp! Loved it!
@Mrjononotbono2 жыл бұрын
Thank you! Great video. I’m a beginner and this has been so helpful. :)
@KiliGraphics2 жыл бұрын
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.
@TheIndieGamesNL2 жыл бұрын
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
@dcry10032 жыл бұрын
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?
@greenislegames2 жыл бұрын
@@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.
@DeathGOD73 жыл бұрын
Found this channel from BE AMAZED and its quite good... game dev + gameplay sign me up...
@yagmanx3 жыл бұрын
Thanks for checking the channel out ☺ glad you like the content!
@TYNEPUNK Жыл бұрын
great optimisation tips and well described. cheers.
@Havie2 жыл бұрын
The polish and big fixing phase is brutal , doing this on 3 projects at once rn 😭
@bradjones74912 жыл бұрын
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.
@markhenry37946 ай бұрын
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. 😅
@TheMeeelting2 жыл бұрын
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)