TGViewer
Channel Public Channel
Everyday Unity

Everyday Unity

@everydayunity

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
Subscribers
1.19K
Photos
167
Videos
60
Links
2.4K
Recent Posts 20 shown
Post #2630 265
Claude Code effort level and model selection

effort means more than just "thinking time." Effort level controls how much work Claude does on your request overall. This does include how long the model thinks, but also:

How many files it reads;
How much it verifies; and
How far it pushes through a multi-step task before checking in with you.
At a higher effort, Claude will take more of those actions (for example, read files, run tests, and double-check) before it comes back to you. At lower effort, it would rather ask you for more context than spend tokens figuring something out on its own


They recommend starting with the default effort, as it fits most users and their tasks in terms of efficiency and token usage. Then if anything goes wrong based on the result switch the model, effort, or add more context.

The model setting is roughly how capable; the effort setting is roughly how thorough. Most real tasks need some of both.


https://claude.com/blog/claude-model-and-effort-level-in-claude-code

#llm
Claude Claude Code effort level and model selection | Claude | Claude by Anthropic Anthropic's guide to the Claude Code effort level and model selection: when to raise or lower effort—low, medium, high, and max—and how to choose between Claude Fable, Opus, and Sonnet.
  • 👍 7
  • 🔥 1
Post #2629 345
Netcode for GameObjects 3.0.0 is now available

It is preparation for Unity’s shared Netcode stack: Netcode for Entities 7.0 becomes a hard dependency, Unity 6.7 is the minimum supported Editor

The interesting caveat: NGO does not actively use Entities yet. So the dependency and migration surface arrive before the feature payoff.

https://discussions.unity.com/t/netcode-for-gameobjects-3-0-0-is-now-available/1736792

#unity #netcode
Unity Discussions Netcode for GameObjects 3.0.0 is now available Hi everyone! In sync with the Netcode for Entities version 7.0.0 announcement, we wanted to share an update from the Netcode for GameObjects side of things and how it will be delivered starting with Unity 6.7. What do you need to know Netcode for GameObjects…
  • 👍 11
  • 🔥 2
Post #2627 802
Have you tested Astra already?

I checked deepswe bench and decided to test it with medium effort as it has shown the same result as sol max but cheaper.

I implemented 2 mid-size tasks and spent ~30% of a weekly limit on pro x5. Which subjectively looks more expensive than sol at higher efforts.

At least they gave us 2 more weekly resets.

Quality is the same as I had no major issues with sol before too.

What about your experience?
  • 👍 5
  • 🔥 2
Post #2626 768
Unity Pipeline 0.6 adds hot reload for IL2CPP

It is experimental, with a limited [HotReload] C# subset.

In the Editor, open the Window > Pipeline > Settings window, then in the Watcher section, click on Start. Note that you need to put the [HotReload] attribute on methods you intend to edit ahead of time and that it does not support all possible code changes - adding fields to a class is not supported etc.
source


https://discussions.unity.com/t/unity-pipeline-package-0-6-0-exp-1-is-available-now/1735626

#cli
Unity Discussions Unity Pipeline package 0.6.0-exp.1 is available now! This new version comes with lots of additions and fixes for you! Sorry for the long post! TL;DR: Hot reload is more powerful and can be used with IL2CPP and on connected players The Runtime Server has been moved from a MonoBehavior to Settings (Breaking…
  • 👍 11
  • 🔥 1
Post #2625 542
Memory Profiler finds the roots behind Unity leaks

I keep coming back to this question with memory tools: not only "where was this allocated?" but "what is keeping it alive?"

Memory Profiler 1.2.0-pre.1 adds a Roots & Impact table attributing snapshot memory to static fields, scenes, AssetBundles, native subsystems, and other roots. It lets you sort leaked objects by total impact, including native and graphics memory they keep alive. It also captures CoreCLR Player snapshots, tho the VM’s own native allocations remain Untracked.

https://discussions.unity.com/t/memory-profiler-1-2-0-pre-1-released-roots-impact-profiling-coreclr-support/1735523

#memory #profiling #unity
Unity Discussions Memory Profiler 1.2.0-pre.1 Released — Roots & Impact Profiling & CoreCLR Support We’ve just released version 1.2.0-pre.1 of the Memory Profiler package, and with it the new Roots & Impact table, which enables entirely new workflows for analyzing your memory usage. This thread walks through them. For the full change log, see the releases…
  • 👍 10
  • 🔥 4
Post #2624 698
Google Play makes mobile memory a release metric

Google Play is adding game quality thresholds from February 2027: anonymous RSS plus swap, bitmap memory, and DEX optimization. The key detail is the measurement model: 28-day P90 data by app state and device-RAM tier, not one dev-device capture. For games, foreground limits range from 2.25 GB on 4 GB devices to 5 GB on 16 GB; games over 50 MB of DEX face 25% minimums for shrinking, optimization, and obfuscation.

New metrics are already available in Google Play Vitals.

https://developer.android.com/blog/posts/elevating-app-quality-reducing-memory-usage-and-improving-device-migration

#performance #memory #android
Android Developers Elevating app quality: Reducing memory usage and improving device migration | Android Developers' Blog Maintaining a healthy Android ecosystem is a shared commitment where every app and game has a role to play.
  • 👍 8
  • 🔥 1
Post #2622 782
PerfLint puts AI optimization on measured ground

I have shared before the example how I used LLM and Tracy to profile a godot game.
And recently I experimented a lot with automating profiling our Unity game at work with the help of agents.

So I’m always skeptical when an AI agent “optimizes” a Unity project by reading files and guessing or even hallucinating (happened a few times in our team).
PerfLint takes a better route: deterministic rules measure assets, import settings, memory and build size, then expose findings through Unity CLI/MCP so an agent can explain or draft a fix.

The author reports Addressables duplication dropping from 337 assets to 5, and bundles shrinking from 1.29 GB to 805 MB. More interestingly, the tool caught an agent’s false texture diagnosis before it changed anything.

I haven’t tried it yet, take the numbers with a grain of salt, but “measure first, let AI explain” is the direction I want.

Have you tried it before or after this latest update?

https://discussions.unity.com/t/released-perflint-free-local-audit-for-build-size-performance-and-unity-6-migration/1734256

#performance #ai
Unity Discussions [RELEASED] PerfLint — free local audit for build size, performance and Unity 6 migration Hi all — PerfLint is on the Asset Store now, and it’s free. It scans a Unity project locally and tells you what is costing you build size, memory and frames, with the file and the number attached. No account, no telemetry, nothing uploaded. Rather than list…
  • 🔥 8
  • 👍 1
  • 💩 1
Post #2620 804
Rendering at scale: Efficient strategies for massive object counts

Mega Cat Studios shared practical rendering lessons from Backyard Baseball: static batching, GPU instancing, vertex animation textures, culling, and the URP vs HDRP choice.

What I liked most is that the post starts where performance work should start: profile first, then optimize. They explicitly separate CPU- and GPU-bound problems, then explain the tradeoffs. VAT saves CPU time but adds memory pressure, batching saves draw overhead but can increase GPU memory.

This is not a magic checklist, of course. Still, real production notes from the tech trenches are much more useful than another “optimize your draw calls” summary.

https://unity.com/blog/rendering-at-scale-efficient-strategies-for-massive-object-counts

#performance #graphics #optimization
Unity Rendering at scale: Efficient strategies for massive object counts
  • 🔥 6
  • 👍 3
Post #2618 1.03K
Post #2617 1.1K
How Claude Code Uses Prompt Caching

I believe it's important to know what prompt caching is and how it helps save costs.

On this page, I would pay attention to what resets the cache, how agents affect it, how to check your cache usage, and TTL.

One advice I didn't follow before:
Compaction works in your favor when the context you discard is content you no longer need. To choose when its overhead happens, run /compact at a natural break in your work, such as between tasks, instead of waiting for auto-compaction to trigger mid-task. If you’ve gone down a path you want to abandon entirely, /rewind to an earlier turn instead. Rewinding truncates back to a prefix that is already cached, rather than building a new one as compaction does.


https://code.claude.com/docs/en/prompt-caching

#ai
Claude Code Docs How Claude Code uses prompt caching - Claude Code Docs Claude Code manages prompt caching automatically. See why a model switch triggers a slow uncached turn, what /compact costs, why CLAUDE.md edits don't apply mid-session, and how to check your cache hit rate.
  • 🔥 6
  • 👍 3
Post #2616 816
Meet the Unity CLI: manage Unity from your terminal

I had multiple posts about how I used godot because of great cli tools and now its time to test if Unity can match it. Seems like it doesn't have a lot of stuff yet, but it allows agents to eval any code without full recompilation and domain reload. So in theory agents can do any custom work with this command.

Has anyone tested it already?

https://unity.com/blog/meet-the-unity-cli

#cli
  • 🔥 10
  • 👍 1
Post #2615 725
Everyday Unity Since May I have been working on a roguelike prototype, first in Three.js and now in Godot. I started with Three.js because it was the fastest way to check the idea. After a small playtest with my friends, when I verified that it is fun at least for me in…
I transitioned my roguelike game from 2D to 3D to test Sol Ultra when it was released 1.5 weeks ago.

I def can say it was a successful experiment. The game was working, but lacked a few animations I had before.
I initially used original sprites as billboards in 3D world, but then eventually swapped it with very simple models. The game transformed from a simple 2d board to a stylized 3d after I threw in a few shaders and post effects.

And of course the game again became slower to load.
So I ran the same profiling with tracy and got the faster loading in just 5 mins.
Cannot recommend it more.
  • 🔥 9
  • 👍 1
Post #2614 833
Just now Open AI temporarily removed the 5h limit.

It's an interesting addition to the morning discussion we had here about hitting the 5h limit with sol ultra in 18-40 mins.

I hit the 5h limit twice today and have only 32% of a weekly limit left. Thanks Open AI, now I can spend my weekly limit in around 1.5 hours 💪💀
  • 👍 11
  • 🔥 3
Post #2613 823
I have been testing 5.6 Sol lately and haven't seen a really big difference to the old model when I used it with medium, high, extra high effort.

The only thing that surprised me was a co-op bot for my roguelike game. You press a bot run button on the host and it runs kinda optimal strategy and plays the game from all clients. It was done in around 2 prompts and works very well.
I was able to catch around 6 bugs already with it.

Then I added auto mode for LLM, it launches multiple clients each with their own set of launch args. And then LLM reads the console every 5 mins for each client to find anomalies or bugs. It also found a few bugs which led to an incorrect loss.

Apart from that other tasks were the same in terms of speed and quality as 5.5.

This morning I wanted to test 5.6 ultra and compare it against Fable 5, which I used at work to create a pretty big feature on which it worked for 2 days straight with pauses when it was hitting the 5 hour limit of $200 subscription.

So I selected ultra effort, started to write a prompt and then I saw the new update available. It must make things better, right?

I hit it, codex restarted, and the ultra mode is now gone 💀

Do you still have ultra effort on the latest codex version?

And have you tested it against Fable? Which one is better for you?

Drop 💯 if you want to hear more about my Fable experience and how it completed the feature in 2 days on its own.
  • 💯 13
  • 👍 1
Post #2612 687
12-Factor Agents for development workflows

It is mostly a guide, not a library you install and build your game on top of. There are some supporting packages and workshops in the repo, but the core value is the principles for building reliable agents.

The guide pushes against the "big prompt + tools + loop until done" approach.

I have been using AI coding workflows for multiple years already and that's the part where things usually break on big project. It might work for a demo or prototype. But in real Unity projects with long import times, slow build pipelines, and old god singletons no one wants to touch, suddenly LLM even with agents needs logs, state, approvals, retries, and boring deterministic scripts and tools instead of a magic AI button.

Few points I would steal for my game dev agents:

Own the prompts.

If an agent works on my project, I don't want the important prompt hidden inside a framework. I want it in the repo near requirements, diagrams, and maybe even next to scripts it can call. Same reason I like PlantUML: it can be reviewed, changed, reused.

Tools are just structured outputs.
"Run tests" should call a script. "Build WebGL" should call a script. "Check Addressables" should call a script. The LLM can choose what to try next, but it should not invent whether the build succeeded. Deterministic code should return the result.

Pause when action is risky.
An agent can prepare a PR, but I don't want it to push to master or upload a public build without explicit approval. Same for deleting assets, migrations, changing live configs, save compatibility, etc. It might sound obvious, but a lot of agent demos skip exactly this boring part.

Keep the state inspectable.
When an agent fails and retries, I want to see why. Unity has enough "works on my machine" mystery already. If the agent changed a prefab, fixed one error, then broke another platform, I need a history that can be inspected later.

Make agents small.
One agent for "prepare playable build" is okay. One for "investigate this crash report" is okay. A single agent that can modify code, assets, configs, CI, store metadata, and production data is a nice way to lose control. However I am wondering how many tokens can be wasted if there are too many small agents for each small step. Something I would like to test.

Of course, the repo is written mostly from SaaS/product experience, not Unity production. But I think the principles fit game dev really well, because our pipelines are slow, stateful, full of tools, and full of things that should not be changed by "vibes".

I am using my agent team at work daily and already modified it a few times based on the experience. Today I updated it according to 12-factor-agents principles, lets see if it yields better results or just turns into a bigger token drain with no significant benefits.

Have you already built any agent around your game project workflow? Not just coding in Cursor/Claude, but something that runs tests, checks logs, prepares builds, or validates assets, etc?

My unity agents:
https://github.com/AlexMerzlikin/unity-agent-team

12 factor agents:
https://github.com/humanlayer/12-factor-agents

#agent
GitHub GitHub - AlexMerzlikin/unity-agent-team: A focused slice of The Agency, purpose-built for Unity game development A focused slice of The Agency, purpose-built for Unity game development - AlexMerzlikin/unity-agent-team
  • 🔥 7
  • 👍 3
Post #2611 665
Since May I have been working on a roguelike prototype, first in Three.js and now in Godot.

I started with Three.js because it was the fastest way to check the idea. After a small playtest with my friends, when I verified that it is fun at least for me in coop, I decided to move it to a real engine. I picked Godot, even though it is my first game with it.
And then I saw a long loading time.
Of course, the first temptation is to ask an LLM to "optimize the game" and hope for magic. But the better loop is still the old reliable one: profile first, then optimize if needed.
I checked the docs and found that Godot can be connected to Tracy. So I fed the docs to Codex and in one prompt it:

- downloaded Tracy
- set it up for the project
- made a capture
- analyzed the result
- proposed fixes

Then I asked it to apply the fixes, run a review with my functionality reviewer agent, and profile with Tracy again.
The biggest visible win was exiting the game to the lobby. Before it took around 3-5 seconds. Now it is basically immediate.

The complete result is in the pic

This is not a "LLM solved performance" story. More like: LLM made the profiling loop cheaper and faster.

Have you already used LLMs together with real profilers, not just for random code cleanup?

Give 🔥 if you want to hear what it was like for me to port the game from Three.js to Godot.

#performance #profiling #godot #tracy
  • 🔥 15
Older posts →

About this channel

How can I read @everydayunity without a Telegram account?
TGViewer shows the public web preview Telegram publishes for Everyday Unity: recent posts, photos, videos and the subscriber count, with no app, login or account.
How many subscribers does Everyday Unity have?
Everyday Unity (@everydayunity) has 1.19K subscribers on Telegram, refreshed roughly every 30 minutes.
Does Everyday Unity know I viewed it here?
No. Public channel previews carry no viewer identity, and TGViewer has no accounts or tracking of what you look up.
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →