NavMeshPlus: Unity NavMesh 2D Pathfinding
Unity nav mesh doesn't support 2D out of the box. This repo contains the implementation of NavMeshSurface and 2d Extensions for tilemap, sprites and collider2d top down games.
https://github.com/h8man/NavMeshPlus
#navmesh2d #navmesh #pathfinding
Unity nav mesh doesn't support 2D out of the box. This repo contains the implementation of NavMeshSurface and 2d Extensions for tilemap, sprites and collider2d top down games.
https://github.com/h8man/NavMeshPlus
#navmesh2d #navmesh #pathfinding
👍4
The Cost Of async/await On The Build Size
Knowing how async/await works under the hood, I was interested in understanding the impact on the build size, as the compiler does its magic and for each async method generates the state machine consisting of hundreds of lines of code. During IL2CPP phase this amount grows even further, so code growth definitely should cause build size to increase, let's find out the actual impact in this analysis.
https://gamedev.center/the-cost-of-async-await-on-the-build-size/
#async #buildsize #optimization
Knowing how async/await works under the hood, I was interested in understanding the impact on the build size, as the compiler does its magic and for each async method generates the state machine consisting of hundreds of lines of code. During IL2CPP phase this amount grows even further, so code growth definitely should cause build size to increase, let's find out the actual impact in this analysis.
https://gamedev.center/the-cost-of-async-await-on-the-build-size/
#async #buildsize #optimization
gamedev.center
The Hidden Costs of async/await: How it Affects Build Size
Uncover the relationship between using async/await and build size. Learn the costs and how it affects your code in this comprehensive analysis
👍11
Choosing the Right Load Type in Unity’s Audio Import Settings
The post describes in details what audio load type you should choose:
- Compressed in Memory
- Decompress on Load
- Streaming
Depending on the CPU/memory trade off
https://medium.com/@made-indrayana/choosing-the-right-load-type-in-unitys-audio-import-settings-1880a61134c7
#audio #performance
The post describes in details what audio load type you should choose:
- Compressed in Memory
- Decompress on Load
- Streaming
Depending on the CPU/memory trade off
https://medium.com/@made-indrayana/choosing-the-right-load-type-in-unitys-audio-import-settings-1880a61134c7
#audio #performance
👍5
PackageEditor: A tool for Unity to edit a git package within the package manager
The package editor is a tool that allows you to edit a package that is installed using a git URL via the Unity Package Manager by creating a local copy of the package.
This allows you to edit the package in the project, and then push the changes to the source repository. Then once you are done, you can revert to the original "production" package using this tool.
https://github.com/Hibzz-Games/Hibzz.PackageEditor
#editortool #package
The package editor is a tool that allows you to edit a package that is installed using a git URL via the Unity Package Manager by creating a local copy of the package.
This allows you to edit the package in the project, and then push the changes to the source repository. Then once you are done, you can revert to the original "production" package using this tool.
https://github.com/Hibzz-Games/Hibzz.PackageEditor
#editortool #package
👍4
Everything you need to know about Memory Profiler 1.0.0
https://blog.unity.com/technology/everything-you-need-to-know-about-memory-profiler
#memory #profiler #optimization
https://blog.unity.com/technology/everything-you-need-to-know-about-memory-profiler
#memory #profiler #optimization
Unity
Everything you need to know about Memory Profiler 1.0.0
Discover what’s inside the new Memory Profiler 1.0.0, which delivers improvements to the profiling suite, offers a more complete view of memory usage, and makes it easier to optimize performance or detect memory issues.
👍6
This media is not supported in your browser
VIEW IN TELEGRAM
Unity-Smoothed-Particle-Hydrodynamics: SPH in the Unity engine implemented in three different ways using MonoBehaviour, Entity-Component-System, and ComputeShader
https://github.com/Gornhoth/Unity-Smoothed-Particle-Hydrodynamics
#hydrodynamics #computeshader #ecs
https://github.com/Gornhoth/Unity-Smoothed-Particle-Hydrodynamics
#hydrodynamics #computeshader #ecs
👍2
unity-toolbar-extender: Extend the Unity Toolbar with your own Editor UI code.
Can come quite in handy, for instance when you have to frequently switch between multiple scenes. However I prefer to create shortcuts for frequent repetitive actions.
https://github.com/marijnz/unity-toolbar-extender
#editortool #toolbar
Can come quite in handy, for instance when you have to frequently switch between multiple scenes. However I prefer to create shortcuts for frequent repetitive actions.
https://github.com/marijnz/unity-toolbar-extender
#editortool #toolbar
👍6
This media is not supported in your browser
VIEW IN TELEGRAM
Unity-AnimatorTransitionCopier: A simple tool to copy paste transitions in Animator editor
https://github.com/qwe321qwe321qwe321/Unity-AnimatorTransitionCopier
#animator #editortool
https://github.com/qwe321qwe321qwe321/Unity-AnimatorTransitionCopier
#animator #editortool
👍3
This media is not supported in your browser
VIEW IN TELEGRAM
ui-circle-segmented: Custom graphic for uGUI, Circle splitted to segments, with skip offset, sprite round,global offset, circle-spaced gradient
https://github.com/mitay-walle/com.mitay-walle.ui-circle-segmented
#ui #circular #progressbar
https://github.com/mitay-walle/com.mitay-walle.ui-circle-segmented
#ui #circular #progressbar
👍6
Tips and Tricks for good platforming games (with example)
All or the majority of these tricks are always used in most of successful platformers out there for many years. Make sure to check this out if you develop your own platformer game.
https://www.davetech.co.uk/gamedevplatformer
#gamedesign #platformer
All or the majority of these tricks are always used in most of successful platformers out there for many years. Make sure to check this out if you develop your own platformer game.
https://www.davetech.co.uk/gamedevplatformer
#gamedesign #platformer
www.davetech.co.uk
Tips and Tricks for good platforming games (with example) - Things Made By Dave
👍5
keijiro/SpriteOutlineFx: Outline image effect for 2D sprites
https://github.com/keijiro/SpriteOutlineFx
#outline #spriteoutline
https://github.com/keijiro/SpriteOutlineFx
#outline #spriteoutline
👍4
This media is not supported in your browser
VIEW IN TELEGRAM
Hot reload: a tool which lets you skip all compile times in Unity
It uses a custom C# compiler integration, and only compiles the code that was changed. That output is used to patch up the existing C# code while it's running. It works both inside and outside of playmode.
There shouldn't be any serious risk as you can always just recompile the code normally to reset any bad changes which may have failed to apply (i.e. when using some unsupported features).
It doesn't currently support changes that would require vtable modifications like having a type implement another interface or adding an override to an existing virtual method. There are some other unsupported features that can be checked in the docs, but generally it covers a lot of use cases and can be really useful.
https://www.reddit.com/r/Unity3D/comments/10v66xi/we_just_released_a_free_tool_which_lets_you_skip/
Website: https://hotreload.net/
#editortool #hotreload
It uses a custom C# compiler integration, and only compiles the code that was changed. That output is used to patch up the existing C# code while it's running. It works both inside and outside of playmode.
There shouldn't be any serious risk as you can always just recompile the code normally to reset any bad changes which may have failed to apply (i.e. when using some unsupported features).
It doesn't currently support changes that would require vtable modifications like having a type implement another interface or adding an override to an existing virtual method. There are some other unsupported features that can be checked in the docs, but generally it covers a lot of use cases and can be really useful.
https://www.reddit.com/r/Unity3D/comments/10v66xi/we_just_released_a_free_tool_which_lets_you_skip/
Website: https://hotreload.net/
#editortool #hotreload
👍7
CustomSRP: Many mini-custom-SRPs showing how to achieve different things when creating your own SRP. Only SRP Core package is needed.
Also provides a sample of RenderGraph usage.
https://github.com/cinight/CustomSRP
#srp #rendergraph
Also provides a sample of RenderGraph usage.
https://github.com/cinight/CustomSRP
#srp #rendergraph
GitHub
GitHub - cinight/CustomSRP: Many mini-custom-SRPs showing how to achieve different things when creating your own SRP. Only SRP…
Many mini-custom-SRPs showing how to achieve different things when creating your own SRP. Only SRP Core package is needed. - cinight/CustomSRP
👍4
Energy Shield Hologram in Unity Shader Graph
A really great post that brakes down a complex shader into the list of smaller effects
https://danielilett.com/2023-02-09-tut6-3-energy-shield/
#urp #shadergraph #forcefield
A really great post that brakes down a complex shader into the list of smaller effects
https://danielilett.com/2023-02-09-tut6-3-energy-shield/
#urp #shadergraph #forcefield
Daniel Ilett: Games | Shaders | Tutorials
Energy Shield Hologram in Unity Shader Graph
Sword and Shield
👍4
Addressables: Planning and best practices
A helpful overview of what Addressables is (hope everyone knows it by this point anyway) and how to use it effectively. Provides strategies when and how to organize your content. As well as handy cheatsheets for a few common use cases:
- A mobile game with frequent content updates
- A standalone, self-contained desktop or console game
- A VR game built for Meta Quest 2
https://blog.unity.com/technology/addressables-planning-and-best-practices
#addressables #assetbundle
A helpful overview of what Addressables is (hope everyone knows it by this point anyway) and how to use it effectively. Provides strategies when and how to organize your content. As well as handy cheatsheets for a few common use cases:
- A mobile game with frequent content updates
- A standalone, self-contained desktop or console game
- A VR game built for Meta Quest 2
https://blog.unity.com/technology/addressables-planning-and-best-practices
#addressables #assetbundle
Unity
Addressables: Planning and best practices
In this blog, Unity Senior Technical Product Manager Jeff Riesenmy offers a guide to the most important factors for developers to consider in order to get the most out of the Addressables system on a project.
👍7
Demystifying Floating Point Precision
Floating point numbers have limited precision. You have likely encountered bugs where things start breaking after too much time has elapsed, or after something has moved too far from the origin.
This post aims to show you how to answer the questions:
What precision do I have at a number?
When will I hit precision issues?
https://blog.demofox.org/2017/11/21/floating-point-precision/
#float
Floating point numbers have limited precision. You have likely encountered bugs where things start breaking after too much time has elapsed, or after something has moved too far from the origin.
This post aims to show you how to answer the questions:
What precision do I have at a number?
When will I hit precision issues?
https://blog.demofox.org/2017/11/21/floating-point-precision/
#float
The blog at the bottom of the sea
Demystifying Floating Point Precision
Floating point numbers have limited precision. If you are a game programmer, you have likely encountered bugs where things start breaking after too much time has elapsed, or after something has mov…
👍3
Floating Origin in Unity
How to mitigate floating point precision issues when dealing with large world games
https://manuel-rauber.com/2022/04/06/floating-origin-in-unity/
#floatingorigin
How to mitigate floating point precision issues when dealing with large world games
https://manuel-rauber.com/2022/04/06/floating-origin-in-unity/
#floatingorigin
Manu's Techblog
Floating Origin in Unity
If you're creating an endless runner or big/endless world's, a floating origin will most likely help you to reduce visual errors.
👍2
How to build Hot Reload For Unity
2 hot reload tools have been released recently (shared the previous one here before).
The author of this one also provided a tutorial with basics of the hot reload implementation.
https://immersivevrtools.com/Blog/how-to-build-hot-reload-functionality-for-unity
Repo: https://github.com/handzlikchris/HotReloadForUnity#fast-noscript-reload---ready-made-tool-is-available-on-the-asset-store
#hotreload
2 hot reload tools have been released recently (shared the previous one here before).
The author of this one also provided a tutorial with basics of the hot reload implementation.
https://immersivevrtools.com/Blog/how-to-build-hot-reload-functionality-for-unity
Repo: https://github.com/handzlikchris/HotReloadForUnity#fast-noscript-reload---ready-made-tool-is-available-on-the-asset-store
#hotreload
Immersivevrtools
How to build Hot Reload For Unity - Immersive VR Tools
Learn how to implement Hot Reload functionality in Unity. Iterate on code insanely fast without breaking play session
👍8