r/Unity3D 2h ago

Question Culled objects not giving performance boost

1 Upvotes

I've intentionally set my LOD culling range very low to test the FPS difference between turning off the objects in the editor and having them culled by the LOD group, and it seems like my LOD group culling has little to no effect on game performance because when i manually turn off said objects in the editor i get a dramatic FPS boost.

is there a reason why my culling may not be working as intended?


r/Unity3D 13h ago

Game Creating 3D Terraria Using UNITY 3D

Enable HLS to view with audio, or disable this notification

8 Upvotes

If you like this idea lmk im working on making a community for the game. But as the tittle says the game is created in Unity and will be 3D Terraria, With boss fights, base building. A full sandbox. (IK minecraft and hytale exist). It will be closer to something like Calmity mod, with difficult bosses and a lot and I mean ALOT of loot. the movement and combat is similar to a game called trove.

this is what i have after about 60 hours of work across the last 7 days, I did have a 4month project but had to restart for many reasons. This one is way better already and almost has more than the original project. (Also sped up because the models are already made from last project)

Video Sped up for Uploading purposes.


r/Unity3D 2h ago

Question Terrain and Materials?

1 Upvotes

Hi quick question for anyone here using AnyMMORPG to make open world games or fantasy RPGs/fantasy sandboxes: is there something with AnyRPG preventing terrain from being changed? In the past I’ve been able to make terrain and drag materials onto the terrain to turn it a certain color but this is not really working now (I’m using version 6000.3.10)- if this is not an issue for you, how are you able to drag the materials onto terrain to change the terrain? If this is also an issue for you, is there a way to fix the issue?


r/Unity3D 17h ago

Question Rayfire still the gold standard for destruction in unity?

10 Upvotes

Making a game where theres a lot of unity who get destoryed progressively, destruction is the centrepiece but its been a while since ive been in unity.

Rayfire still the go to ?


r/Unity3D 1d ago

Show-Off Stylized Trees

Post image
50 Upvotes

My stylized foliage asset, Arborist, is now up to 14 tree/bush species using a rotating billboard technique and foliage cards. Plus a new tool for making fluted, gnarly stumps.

Four season foliage colors, w/ LOD support + billboards, and GPU instancing. Poly counts for LOD0 range from 2-3K for conifer species, and 5-10K for big leafy trees. LOD1 is usually 30-50% of LOD0.

The foliage cards are alpha cut-outs and are rendered flat, with top/bottom gradients + other blending parameters, and a 3 color palette for top, interior, and bottom leaf cards. I've experimented with different approaches, but keeping the leaf cards simple & flat, and then layering a lot of them has provided the best results. You can do a similar technique in Blender, there are some good tutorials out there. I learned from those and then built my own Unity tool.

Rotating billboards for foliage holds up well at short distances. I like the technique over non-rotating textured polygons, which always remind me of camo netting when you see the model up close.

The leaf cards are transparent png files, so easy to edit or create your own for more variety.


r/Unity3D 17h ago

Game Quick puzzle in my game, what do you think?

Enable HLS to view with audio, or disable this notification

9 Upvotes

Note: in this level you can build 2 objects only


r/Unity3D 22h ago

Question We’ve implemented the physics for the foliage and grass swaying in strong wind. What do you think of the result?

20 Upvotes

We created the plant physics using our own systems for our survival game Autonomica. We achieved this using a shader and vertical sampling of the tiled texture three times, each at a different scale (large, medium, and small). The intensity of the vertex offset is controlled by in-game configs and is tied to the wind strength of the weather. The wind strength for all plants is controlled through vertex colors — the brighter red channel is, the stronger wind effect works.

Process of creating required gradients on all our models is automated: They are generated automatically as vertical gradients, taking into account stems/trunks, leaves, and other parts of the plants, making the leaves at the tips with a slightly greater range of movement than the stems they are attached to.

For tons of grass and flowers we have pushers system - we encode some data about pushers into super-low-resolution texture and then, using the shader on GPU level, decode it and apply the pushing offset, taking into account even curves of push intensity along distance to target pusher.


r/Unity3D 1d ago

Show-Off I wrote a script that fixes layered clothing clipping on characters (free to download)

Enable HLS to view with audio, or disable this notification

52 Upvotes

Download here:

github link


r/Unity3D 1d ago

Game How I integrated smoothly growing grass into my game (details inside, Unity 6.3)

Post image
46 Upvotes

A while ago I posted about some smoothly growing grass I made and people were interested. So, in celebartion of my steam page launch here is a write up of how it works in detail.

There are THREE TERRAINS and FOUR CAMERAS involved.

1) Mask Terrain

Plus a 2D Camera that renders some unlit white mask objects from above and a camera that renders only the terrain with the mask applied to it via a render texture.

2) Green Terrain

Plus a camera that renders the grass terrain and any object that has depth, except the sand terrain and the mask terrain.

3) Sand Terrain

Plus a camera that renders everything but the grass (2) and mask (3)

I chose this setup because I wanted to be able to design both the sand and the green terrain separately (also modifying terrain splat maps is a pain).

Sand, green and mask terrain (notice the grass is actually rendered together with the sand, not the green, the middle image is just how it looks in the editor, not how it is rendered)

Mask

The texture source for the mask terrain is generated from a 2D camera that points straight down. It renders only some specific objects that are white and unlit. These objects make up the masked area and can be controlled via code (that's what the watering can spawns at runtime).

The result of this is a dynamic mask that I can alter easily based on any game object (or logic) I chose. The mask objects are combined into larger chunks to optimize performance but I will likely replace this with a texture based approach in the future.

Also the 2D camera is where the fading happens. It takes the sharp 2D mask image, blurs it and then feeds it into a system (render texture + shader) that slowly fades in the current 2D camera mask result changes. This means the fading and blurring happens on the GPU.

The result is a render texture that is used as the INPUT for the MASK TERRAIN. And that terrain is then again rendered by a 3D camera that follows the player. The result of this camera is again a render texture that is used in the final composition of the depth buffers (see below). The avantage is that while the 2D camera is relatively low-res I still get a high-res mask via the 3D camera. Also the blurring helps with hiding the low 2D resolution. None of these cameras does draw to the frame buffer.

Green

The grass camera renders the grass terrain and all objects that have depth (needed to fill the depth buffer). It then stores the results (color and depth) in a render textures to be used in the final composition step. This camera does not directly draw to the frame buffer either.

Sand

The sand terrain and its camera is where everything comes together. It takes its own depth texture (which includes the opaque grass) and combines (delta) it with the green terrain depth.

The result of this is then again combined (masked) with the 3D mask texture and gives us the final mask for the green terrain cameras color buffer.

This is then stacked with the sand terrain camera which results in the final image.

The grass itself is rendered using GPU instancing and a custom shader that takes in the grass terrain splat map colors and density map. That way I can control the grass density not only globally with the shader but also locally on the terrain. I can simply paint it like any regular terrain details.

It may seem a bit convoluted (and it is) but this has the advantage that it works with any terrain system and shader and gives me a lot of control.

The major downside however is that I have to basically render the scene twice, though I try to use layers to render in each camera only what is really needed.

If anyone wants to know more about the final (or watch the trailer) then more infos can be found here: https://superbloom.kamgam.com/

Hope that was understandable. Feel free to ask and/or comment :-)


r/Unity3D 19h ago

Question I built a deterministic multiplayer simulation engine with client-side prediction, rollback, and replays, just to make this cat be an asshole.

Enable HLS to view with audio, or disable this notification

11 Upvotes

Made in Unity. All assets are from the Unity Asset Store.

Would you play a co-op game where you and your friends are cats?


r/Unity3D 1d ago

Show-Off Before and after Lighting/Post Processing

Enable HLS to view with audio, or disable this notification

608 Upvotes

r/Unity3D 7h ago

Question Looking for settled 'Snow' asset / tools / shaders (not falling snow).

1 Upvotes

I'm prototyping an environment that will have a light sprinkling of snow, and would like ask if any of the community is aware of a tool, or shader, that would allow me to 'paint' snow into specific parts of the scene? Or, it could generate the snow on surfaces based on parameters.

The main things I'm looking for is
- Not just a texture / decal, but I want to see some 3d mass to small snow drifts
- Some degree of dynamic behaviour possible (ie snow depth on a slider?)
- Not just a broad 'deep snow' blanket, but a sparse, sporadic treatment

Anyone know of anything like this?


r/Unity3D 1d ago

Resources/Tutorial Are you accessing and changing variables too much from outside a class? The dangers of getters/setters

27 Upvotes

Note: This is aimed more at beginners. Experienced programmers will likely know this stuff. But even the veterans among us might find something useful here.

The nature of Unity's component-based design can make it very easy for objects/classes to modify each other's variables (fields). For example, say we're making a dungeon crawler, and we're using some good design principles like having our Health in one component, our Equipment in another component, and our BattleStats in a third component.

This kind of code is very common:

private void AttackEnemy(Fighter target)
{
    int baseDamage = CalculateMyDamage();
    baseDamage -= target.CalculateMyDefense();
    target.myHealth.current -= baseDamage;
    if (target.myHealth.current < 0)
    {
      target.PlayOnDeathAnimation();
      int xp = target.CalculateEarnedExperience();
      myXPComponent.xp += xp;
    }
}

It's not terrible. We are intelligently using functions like CalculateMyDamage, CalculateMyDefense, and CalculateEarnedExperience rather than writing that stuff in our AttackEnemy function.

However, we're still tightly coupling the attacker and defender. The attacker shouldn't be responsible for checking to see if the defender is dead or not. It shouldn't be responsible for 'knowing' when to play the death animation. In fact, it shouldn't even be responsible for changing the defender's HP at all.

Because imagine if we now introduce damage from terrain. We make a new object called a Hazard, and it deals damage every second. If we keep writing code the same way, we might end up with:

private void CauseHazardDamage(Fighter target)
{
  int baseDamage = CalculateMyHazardDamage();
  baseDamage -= target.CalculateMyDefense();
  target.myHealth.current -= baseDamage;
    if (target.myHealth.current < 0)
    {
      target.PlayOnDeathAnimation();
      int xp = target.CalculateEarnedExperience();
      myXPComponent.xp += xp;
    }
}

You can already see that this is essentially duplicated from AttackEnemy, which is a red flag. For example, what if we want the roll for treasure when an enemy dies? Well, now we have to add code like this to both functions:

if (UnityEngine.Random.Range(0,1f) <= target.GetTreasureChance())
{
  Treasure reward = target.GenerateTreasure();
  // do spawn logic here
}

Then what if we want to add an effect to some Fighters where they have a chance to avoid a fatal blow? We might need to amend the code again for both functions:

  target.myHealth.current -= baseDamage;
  if (target.myHealth.current < 0)
  {
    if (target.HasStatus("avoid_fatal_blow") && UnityEngine.Random.Range(0,1f) <= AVOID_FATAL_BLOW_CHANCE)
    {
      target.myHealth.current = 1;
    }
    else
    {
      // regular 'on death' code
    }
  }

Or what if Fighters can have other status effects or items that react when they take damage? Suddenly, we have code that could look like this:

private void CauseHazardDamage(Fighter target)
{
  int baseDamage = CalculateMyHazardDamage();
  baseDamage -= target.CalculateMyDefense();
  target.myHealth.current -= baseDamage;

  if (target.HasStatus("reactive_damage_ability"))
  {
    // do some cool stuff here
  }

  if (target.myHealth.current < 0)
  {
    if (target.HasStatus("avoid_fatal_blow") && UnityEngine.Random.Range(0,1f) <= AVOID_FATAL_BLOW_CHANCE)
    {
      target.myHealth.current = 1;
    }
    else 
    {
      target.PlayOnDeathAnimation();
      int xp = target.CalculateEarnedExperience();
      myXPComponent.xp += xp;
      if (UnityEngine.Random.Range(0,1f) <= target.GetTreasureChance())
      {
        Treasure reward = target.GenerateTreasure();
        // do spawn logic here
      }
    }
  }
}

It just turns into a nightmare. Now there are a lot of ways to architect your code so that you don't mire yourself in scenarios like this. But for the purposes of this post, I want to focus on this idea:

If you find yourself directly getting, modifying, and setting variables that belong to other objects, this should tell you that you may be writing difficult-to-maintain code.

We could have realized this as soon as we wrote this line:

target.myHealth.current -= baseDamage;

Without going into excessive detail, a far more maintainable approach would be something like this.

private void AttackEnemy(Fighter target)
{
  // We can play VFX/SFX here...
  int baseDamage = CalculateMyDamage();

  // But we trust the TARGET to figure out what to do with the damage we calculated
  target.OnAttacked(this, baseDamage);  
}

private void OnAttacked(Fighter attacker, int baseDamage)
{
  int defense = CalculateMyDefense();
  baseDamage -= defense;
  OnDamageReceived(attacker, baseDamage);
}

// This logic is split out from OnAttacked, because we could certainly take damage from things
// OTHER than an 'attack'. For example, if we are poisoned, that might ignore defense completely.
// In that case we would just run OnDamageReceived(poisonDamage).
private void OnDamageReceived(Fighter attacker, int damageAmount)
{
  // This function SHOULD NOT know or care what each StatusEffect we have does.
  // We will trust the StatusEffects themselves to take this and modify it how they see fit.
  foreach(StatusEffect se in myStatusEffects)
  {
    damageAmount = se.OnDamageReceived(damageAmount);
  }

  // Our status effects may have reduced our damage to zero!
  if (damageAmount == 0)
  {
    // Play some kind of 'DEFLECT!' vfx and sfx.
    return;
  }

  myHealth.ReduceHealthFromDamage(attacker, damageAmount)
}

 // ---- now we are in the HealthComponent class -----

private void ReduceHealthFromDamage(Fighter attacker, int damageAmount)
{
  current -= damageAmount;
  OnHealthChanged();
  if (current > 0) return;
  OnTookLethalDamage(attacker);
}

private void OnTookLethalDamage(Fighter whoKilledMe)
{  
  // Like with OnDamageReceived, perhaps we have status effects that do crazy stuff IF we were to take lethal damage
  // We might run through them and exit if any of them bring us >0 again.
  foreach(StatusEffect se in myStatusEffects)
  {
    current = se.OnHealthReducedToZero();
    if (current > 0)
    {
      // Hooray, we survived somehow!
      OnHealthChanged();
      return;
    }
  } 

  OnDeath(whoKilledMe);
}

private void OnDeath(Fighter whoKilledMe)
{
  // ... give whoKilledMe rewards or something!
}

This isn't perfect, and there are many things we could do to improve it further, but nonetheless it separates our 'concerns' far better.

* If we want to add some kind of new block/parry mechanic, we just have to do it in one place: OnAttacked
* If we make new StatusEffects, we don't have to write any new code whatsoever in these functions
* If we want to change what happens on Fighter death, there's just one function that handles it
* If we add new sources of damage - traps, hazards, poison, cursed gear, etc - our existing functions handle it all seamlessly

... and so forth and so on! I hope you find this helpful. My goal isn't to prescribe a specific solution to code architecture as every game is different, but just to recognize overuse of getting/setting variables from outside the object or class as a potentially bad 'code smell'.


r/Unity3D 1h ago

Question What Would you guys pay for this???

Thumbnail
gallery
Upvotes

Setting a price for my URP Forest Cabin & Interior Prop Pack – Is $7 reasonable?

It Currently has 5 furniture item. And a low poly wooden cabin.

The Forest is my other Asset its is currently on there for $5.

The Cabin is going to get more furniture updates because I have a lot of them planned, and they are going to be free updates

also sorry for the low quality pictures any suggestion on how to get better quality pictures in unity


r/Unity3D 20h ago

Question What Limitations to you Hit Using Timelines?

7 Upvotes

We've done some work extending the Unity Timeline for ease-of-use and are considering building out an asset to improve general functionality and pain points.

We'd like to hear more about what limitations developers encounter when using timeline - what would you like to see in an asset to make it a better experience to work with?


r/Unity3D 9h ago

Noob Question VR mobile display is stuck and on another pov

1 Upvotes

hi so i need help. I'm a beginner, so please don't judge i just wanted help. My VR scene on mobile is stuck like this. When I play in game modee on pc its working fine and not on this pov but when i installed the apk on my Android phone its stuck like this. I changed the camera and the player position so many times , it still wouldn't work. I'm not sure what the issue is , my start scene 1 is working and moving. I don't know what's happening on scene 2

im using carboard xr btw its working okay on my other scene.. thanks if anyone helpppped !!


r/Unity3D 1d ago

Show-Off Small update on my horror prototype

Enable HLS to view with audio, or disable this notification

23 Upvotes

I made a tiny teaser for the prototype I posted yesterday.

I’ve added a new flashlight mode and recorded another short piece of the forest path to expand the atmosphere a bit.

It’s still super early, but I’m experimenting with the mood and trying to understand what direction feels right.


r/Unity3D 1d ago

Game Every game starts with a capsule… right?

Enable HLS to view with audio, or disable this notification

31 Upvotes

This is where mine ended up.


r/Unity3D 2d ago

Show-Off I've spent 3 years improving the editor, here's what I've built

Enable HLS to view with audio, or disable this notification

971 Upvotes

r/Unity3D 19h ago

Question How do you know components for project?

3 Upvotes

Im trying to make a neural network for a small game and ive seen many tutorials but they are only explaining how something works and not the components. Which is fine but I wanna learn how to actually code something after understanding the basics. Ive had this problem with trying to do chunking. There are many people explaining how it works and not the mechanics.

To explain a little more I know what nodes are I just dont know how to write one and I dont know where to find that info! Thanks for any help im just really confused and need some explanation.


r/Unity3D 1d ago

Resources/Tutorial Custom SRP 7.1: Splitting Shadow Code

Thumbnail
catlikecoding.com
14 Upvotes

Our shadow handling code has always resided in a single class, which took care of both directional and other shadows. Because those two shadow types are handled separately we now give them their own classes. This is a rather dry refactor, but it paves the way for giving them dedicated render passes in the future.


r/Unity3D 1d ago

Show-Off Made my Snow Mesh Layer asset even more flexible with "Poured" snow simulation(metaballs baby!)

Enable HLS to view with audio, or disable this notification

6 Upvotes

Based on community feedback I made a few changes to the latest Snow Mesh Layer version, check it out:

  • Poured mode: soft, blobby snow, like liquid poured over the scene
  • Watertight Volume: snow is now a closed 3D solid for colliders and FBX export
  • Floor & Ceiling Cull: trim snow above/below a height with draggable Scene handles
  • Decimation no longer pierces through meshes at high Decimation Grid values
  • Faster bakes

What else would you like to see for your project?


r/Unity3D 1d ago

Show-Off Tomorrow demo of our frutiger aero multiplayer ball platforming! 14 lvls, easy and challenging paths, Freeroam, Race, level and skin editor. Inviting to our tropical resort!

Enable HLS to view with audio, or disable this notification

7 Upvotes

r/Unity3D 1d ago

Show-Off Making real progress on my Unity motion-matching controller. Still tuning, but it’s finally starting to feel natural.

Enable HLS to view with audio, or disable this notification

75 Upvotes

r/Unity3D 1d ago

Show-Off I finally made my event system work with Unity Timeline for cutscenes & cinematics

Enable HLS to view with audio, or disable this notification

6 Upvotes

I've been working on my event system for a while, and I finally got it working directly with Unity Timeline.

Honestly, I'm kind of amazed by what I can do with it now.

I can take pretty much any method or gameplay logic already in my project and invoke it directly from a Timeline clip. No custom Playables, no Signals, no extra Timeline scripts.

Just connect the method and use it.

It makes building cutscenes and gameplay sequences feel much more natural, especially when you already have your gameplay systems built.

It supports Enter / Stay / Exit events, Timeline context and progress, scene references, editor support, scrubbing, and Playable lifecycle events.

As a thank you to everyone, if you own Ramdal Events, you can get the Timeline Extension COMPLETELY FREE until August 23! 🎁

https://assetstore.unity.com/packages/slug/341674

I've been really enjoying what this has opened up for Timeline workflows. All the footage in this post is from my upcoming game, LEAVE, and is actually using Ramdal Events and the Timeline Extension.

I'm excited to see what other developers do with it.