Sounds like the exactly same advice from the last year about shader variants and how to optimize it. Nicolas goes into more details how keywords and variants work
👍6🔥4
Everyday Unity
Sounds like the exactly same advice from the last year about shader variants and how to optimize it. Nicolas goes into more details how keywords and variants work
Use ifs in shaders instead of keywords. Profile it. It might be better for your case.
🔥6👍1
Everyday Unity
Sounds like the exactly same advice from the last year about shader variants and how to optimize it. Nicolas goes into more details how keywords and variants work
The final tip on shaders about how to check what goes into build
🔥6👍2
It was quick overall. Not as rich in advice as previous years. Especially 2017-2019 talks on the same topic, which are my all time favourites.
Make sure to check them, here is my overview of these talks: https://gamedev.center/best-optimization-tips-by-unity-engineers-at-unite/
Make sure to check them, here is my overview of these talks: https://gamedev.center/best-optimization-tips-by-unity-engineers-at-unite/
🔥5👍1
Talk: Understanding Unity Memory
I recommend checking the recording as Richard gives a gentle intro into how memory works. It must be interesting if you haven't learned it before.
There were a few slides that caught my attention:
- how to use unsafe to allocate your data sequentially in memory in his particular case
- other GC in Unity used for assets etc
- when to split big structs
I recommend checking the recording as Richard gives a gentle intro into how memory works. It must be interesting if you haven't learned it before.
There were a few slides that caught my attention:
- how to use unsafe to allocate your data sequentially in memory in his particular case
- other GC in Unity used for assets etc
- when to split big structs
🔥14👍2
Everyday Unity
Timelines for CoreCLR
The Unity Engine Roadmap
It was impossible for me to share live at Unite all the great features they have planned as it was so packed. Check the recording and you'll definitely find something interesting for you.
I posted the most exciting stuff for me live on the 19th of November, what do you expect the most from the roadmap?
https://youtu.be/rEKmARCIkSI
#roadmap
It was impossible for me to share live at Unite all the great features they have planned as it was so packed. Check the recording and you'll definitely find something interesting for you.
I posted the most exciting stuff for me live on the 19th of November, what do you expect the most from the roadmap?
https://youtu.be/rEKmARCIkSI
#roadmap
YouTube
The Unity Engine roadmap | Unite 2025
Building off our GDC 2025 talk, join us for the next can’t-miss session exploring the latest advancements in the Unity Editor and Engine. In just one hour, we’ll dive into the innovations shaping Unity 6—our current generational release—including upgrades…
🔥15👍1
Optimizing Burst matrix multiplications
A deep dive into optimizing matrix multiplications. A story of multiple optimization attempts, moving from basic implementation to hand-tuned intrinsics.
Key takeaways from the optimization journey:
* Switching to Unity’s Mathematics package (SIMD-friendly) immediately gave a massive boost over standard C#.
* The Low-Hanging Fruit: Using FloatMode.Fast allows the compiler to merge instructions into Fused Multiply-Add (FMLA).
* Reinterpreting NativeArray<Matrix4x4> as float4x4 helps the compiler see the data layout more clearly, reducing instruction count.
* Utilizing Affine Matrices (since most game objects don't use perspective projection) allows you to skip calculating the 0,0,0,1 row, saving significant cycles.
* Using Intrinsics and float4x3 to pack data tightly into vector registers.
This is a must-read if you are working on high-performance physics, skinning, or animation systems in Unity.
https://medium.com/toca-boca-tech-blog/optimizing-burst-matrix-multiplications-bfb301de80ce
#burst #optimiziation
A deep dive into optimizing matrix multiplications. A story of multiple optimization attempts, moving from basic implementation to hand-tuned intrinsics.
Key takeaways from the optimization journey:
* Switching to Unity’s Mathematics package (SIMD-friendly) immediately gave a massive boost over standard C#.
* The Low-Hanging Fruit: Using FloatMode.Fast allows the compiler to merge instructions into Fused Multiply-Add (FMLA).
* Reinterpreting NativeArray<Matrix4x4> as float4x4 helps the compiler see the data layout more clearly, reducing instruction count.
* Utilizing Affine Matrices (since most game objects don't use perspective projection) allows you to skip calculating the 0,0,0,1 row, saving significant cycles.
* Using Intrinsics and float4x3 to pack data tightly into vector registers.
This is a must-read if you are working on high-performance physics, skinning, or animation systems in Unity.
https://medium.com/toca-boca-tech-blog/optimizing-burst-matrix-multiplications-bfb301de80ce
#burst #optimiziation
Medium
Optimizing Burst matrix multiplications
Learn how to achieve 4.5x performance gains with matrix multiplications in Unity’s Burst, and how your C# code affects the final assembly.
1🔥8👍1
Everyday Unity
Photo
Using DOTS to optimize GameObject gameplay: A case study from Survival Kids | Unite 2025
The recording is available now.
https://www.youtube.com/watch?v=ZkvK0mX-id4
#optimization
The recording is available now.
https://www.youtube.com/watch?v=ZkvK0mX-id4
#optimization
YouTube
Using DOTS to optimize GameObject gameplay: A case study from Survival Kids | Unite 2025
This talk covers how Survival Kids uses key DOTS features—Burst, Jobs, Systems, and Collections—to optimize GameObject gameplay without fully adopting Entities. Learn how we used Systems for update order, Burst-compiled Jobs for multithreading, TransformAccessArrays…
1🔥8👍3
Unity 6.3 LTS is available
Hopefully, they are addressing old issues as well.
Key changes for me in 6.3:
* Platform Toolkit: A unified API for handling accounts, save data, and achievements across platforms (Steam, Consoles, Mobile).
* HTTP/2 Support: Now the default for UnityWebRequest where supported, reducing server load and device CPU usage.
* AssetBundles & Addressables: Improved with TypeTree deduplication, which can significantly reduce runtime memory usage and speed up build times.
* Sprite Atlas Analyzer: A new tool to identify inefficiencies, wasted space, and compression issues in atlases.
* SRP Batcher Improvements: A new API for dynamic custom values (Shader User Values) allows the SRP Batcher to handle per-instance data, a performant alternative to Material Property Blocks.
Has anyone tried this in production yet?
Also, for those who already upgraded from 2022 LTS: is it safer to step to 6.0 LTS first, or jump straight to 6.3 LTS?
https://unity.com/blog/unity-6-3-lts-is-now-available
#lts
Hopefully, they are addressing old issues as well.
Key changes for me in 6.3:
* Platform Toolkit: A unified API for handling accounts, save data, and achievements across platforms (Steam, Consoles, Mobile).
* HTTP/2 Support: Now the default for UnityWebRequest where supported, reducing server load and device CPU usage.
* AssetBundles & Addressables: Improved with TypeTree deduplication, which can significantly reduce runtime memory usage and speed up build times.
* Sprite Atlas Analyzer: A new tool to identify inefficiencies, wasted space, and compression issues in atlases.
* SRP Batcher Improvements: A new API for dynamic custom values (Shader User Values) allows the SRP Batcher to handle per-instance data, a performant alternative to Material Property Blocks.
Has anyone tried this in production yet?
Also, for those who already upgraded from 2022 LTS: is it safer to step to 6.0 LTS first, or jump straight to 6.3 LTS?
https://unity.com/blog/unity-6-3-lts-is-now-available
#lts
Unity
Unity 6.3 LTS is Now Available | Unity
Unity 6.3 LTS delivers long-term support and a reliable ecosystem for stable production, and key performance and quality of life improvements.
1🔥7👍3
Everyday Unity
Photo
Understanding Unity memory | Unite 2025
One of my favorite talks this year, which I recommended in my live report from Unite, is now available on YouTube.
https://www.youtube.com/watch?v=0y3erF2tzbI
#memory #unsafe
One of my favorite talks this year, which I recommended in my live report from Unite, is now available on YouTube.
https://www.youtube.com/watch?v=0y3erF2tzbI
#memory #unsafe
YouTube
Understanding Unity memory | Unite 2025
Getting the best performance for your game can depend heavily on the way you're using memory, and C#, while a language with many great features, wasn't initially designed around the performance needs of game developers. Understanding the way your C# code…
1🔥16👍1