ar
Feedback
Everyday Unity

Everyday Unity

الذهاب إلى القناة على Telegram

A game developer and tech lead in a top grossing company posting Unity, programming, and gamedev related stuff that I find interesting Website: https://gamedev.center Most used tags are: #performance #shader #interview Author: @alexmtr

إظهار المزيد
لم يتم تحديد البلدألعاب37 372
1 172
المشتركون
لا توجد بيانات24 ساعات
+27 أيام
+1330 أيام
أرشيف المشاركات
Assets loading section Disable audio preloading Tune Async Upload Pipeline Strip shader variants, less shaders to load and co
Assets loading section Disable audio preloading Tune Async Upload Pipeline Strip shader variants, less shaders to load and compile

The final tip on shaders about how to check what goes into build
The final tip on shaders about how to check what goes into build

photo content

Use ifs in shaders instead of keywords. Profile it. It might be better for your case.
Use ifs in shaders instead of keywords. Profile it. It might be better for your case.

Sounds like the exactly same advice from the last year about shader variants abd how to optimize it. Nicolas goes in more det
+1
Sounds like the exactly same advice from the last year about shader variants abd how to optimize it. Nicolas goes in more details how keywords and variants work

The next default tip: disable domain reload on entering play mode
The next default tip: disable domain reload on entering play mode

How to speed up the compilation. I worked at a project with 1800 assemblies. Everything was slow: Unity compilation, domain r
How to speed up the compilation. I worked at a project with 1800 assemblies. Everything was slow: Unity compilation, domain reload, Rider processing all these solutions. So it's a good advice to keep track of your compilation and assemblies count in control

photo content

A default tip from every year about how transform hierarchies work in unity and how it can be parallelized
A default tip from every year about how transform hierarchies work in unity and how it can be parallelized

photo content
+1

Advanced performance tips and tricks from a Unity consultant One of the most anticipated talk of the conference
Advanced performance tips and tricks from a Unity consultant One of the most anticipated talk of the conference

Using DOTS to Optimize GameObject Gameplay: A Case Study from Survival Kids This talk provides a few examples from a real gam
+7
Using DOTS to Optimize GameObject Gameplay: A Case Study from Survival Kids This talk provides a few examples from a real game showing how performance-intensive paths were optimized. As I've mentioned before, I love reading or watching these optimization stories from the "tech trenches," and I definitely recommend checking the recording later. It covers a few techniques, including how to: - Use Entities systems to update MonoBehaviors - Do position checks effectively - Use a Transform Access Array to update Transforms fast in worker threads There were only 3 cases, but how the talk was delivered is at a super high level. Kudos to Andy for the excellent storytelling

Better IAP tools It definitely speeds up prototyping. One place to setup everything, one place to get all data. At what cost?
+2
Better IAP tools It definitely speeds up prototyping. One place to setup everything, one place to get all data. At what cost? All analytics goes to Unity 🙃

UI toolkit improvements. Will it make you to use it in runtime? Is anyone using it now for in-game UI? I am really curious in
+1
UI toolkit improvements. Will it make you to use it in runtime? Is anyone using it now for in-game UI? I am really curious in your experience

More customizability and better performance on mobile, sounds good to me. Would be interesting to see it really improving tec
More customizability and better performance on mobile, sounds good to me. Would be interesting to see it really improving tech metrics in production

👏
👏

I've been focusing on multiplayer prototypes for the last year as my indie journey. Happy to see the host migration out of th
I've been focusing on multiplayer prototypes for the last year as my indie journey. Happy to see the host migration out of the box.

The Platform Toolkit caught my attention in the keynote. More details were shared on the roadmap session
+1
The Platform Toolkit caught my attention in the keynote. More details were shared on the roadmap session

Timelines for CoreCLR
Timelines for CoreCLR

Reusable technology - Saving development time sharing Unity plugins and SDKs A nice talk with solid tips about creating SDKs.
+1
Reusable technology - Saving development time sharing Unity plugins and SDKs A nice talk with solid tips about creating SDKs. I'd recommend checking out the recording once it's available (Should be pretty soon, based on the previous year). Especially handy if you need to share code between games inside your company.