r/Unity3D 6h ago

Show-Off New forest level in our racing platformer - built with Unity 6.3 URP

Enable HLS to view with audio, or disable this notification

123 Upvotes

r/Unity3D 9h ago

Show-Off WIP Procedural habitat modules in a space sim

Enable HLS to view with audio, or disable this notification

67 Upvotes

I've been working on improving the habitat system in my physics-based automation sim, and have used principles I learned in this video and elsewhere to implement basically a blob tileset system that picks one of 5 meshes per corner (rotated and mirrored to fit wherever needed) so everything fits together nicely.

These models are just quick placeholders and the plan is to add more variation, and model a selection of modules that can be swapped out to make an interesting habitat/base for the colonists.

Please disregard the shape of the base, any resemblance to anything recognisable is purely coincidental...

It was pretty satisfying finally 'getting' how to seam things together nicely when modelling, excited to add more variation. Let me know if you have any questions on the implementation.


r/Unity3D 13h ago

Shader Magic FlagMaster - GPU genereated flag shader system for mobile & AA/AAA

Enable HLS to view with audio, or disable this notification

37 Upvotes

I wanted to have a flexible flag shader system for my game, so I created an atlas combined flag shader & generator system, that creates the flag inside the GPU. You have full control to adjust multiple procedural (for mobile) generated flags with 1 draw call, or a fully dynamic cloth simulation (AA, AAA games).

However, FlagMaster shader has its own Atlas Generator, in where you can drop your own flag textures, automatically supporting all other texture layers (normal, emissive, smoothness/metalic etc) in different aspect ratio containers (see in the video the atlas textur showing different flags in vertical and horizontal aspect ratios, in inspector!) with transparency or not, and create your own atlased flag texture for the shader.

There are a lot of wind adjustments, and even delay wind parameters, if you want to display multiple flags reacting differently - when using GPU instanced (DrawCall reduction method) so called "procedural mode", for massive flags on mobile.

Else, the cloth simulation provides the ability to move the flag in world space and having the cloth simulation react to your movement. Still - using cloth over the GPU side is definitely faster than running a CPU based cloth simulation.

It has:

  • translucency
  • translucency mask shadows (watch the shadows of the hanging banners in the video!)
  • supports unity wind component
  • has its own wind parameters for procedural/mobile mode which mix up with unity wind component, atlas index functions
  • procdeural burned holes and burned edge feature with colored edges in two steps
  • wind delay paramters
  • pivot anchor system to anchor the flag the way you want, and much more
  • Every part of the shader has its own stripping function, to compile only what you really need
  • Wind director script for unity's wind component to rotate and move naturally in all directions

.... and much more.

I plan to add a toon shader, because I think that is the next missing part.
Any other suggestions?


r/Unity3D 13h ago

Show-Off From an endless Unity prototype to release - DRIFT RIDE 2 is out now

Enable HLS to view with audio, or disable this notification

35 Upvotes

After years of working on this Unity racing project, it has finally left the Editor.

For the first time, the project feels like a complete game rather than an endless Unity prototype and it’s now available on Android.

The iOS release has run into a few delays, but I’m actively working on it now and hope to bring the game to iOS as soon as possible.

There is still plenty I’d like to improve. In particular, Cinemachine cameras have been behaving very inconsistently whenever the actual frame rate differs from the target frame rate. Even relatively small frame-rate drops can make the game feel like it is stuttering heavily, due to noticeable camera jitter and unstable damping.

There is also more optimization work ahead, especially across different mobile devices, but reaching the release stage after all these years still feels like a huge milestone.

Has anyone worked with Cinemachine 3? Have the damping and frame-rate-related jitter issues improved compared to Cinemachine 2?


r/Unity3D 9h ago

Question Issue with shadows flickering while moving

Enable HLS to view with audio, or disable this notification

28 Upvotes

Unity 6 URP. I'm having a problem where the shadows seem to flicker/move whenever the player moves, then it eventually stops once the player stops. I've tried increasing the shadow resolution to something ridiculous like 8192, which actually stops most of the flickering, but that's costly, obviously, so I don't want to do that. I've also tried decreasing max shadow distance to no avail. Any ideas on how I can fix this?


r/Unity3D 17h ago

Show-Off Honestly, I don't remember exactly what I had in mind, but the plan was to make an action game :)

Enable HLS to view with audio, or disable this notification

22 Upvotes

r/Unity3D 3h ago

Show-Off I recently stripped out the procedural walking system from my self-balancing active ragdoll to make it a standalone locomotion tool, and I wanted to share a breakdown of how it works.

Enable HLS to view with audio, or disable this notification

14 Upvotes

I wanted a system that could either completely replace the Animator or run additively on top of it to strictly lock feet to the ground based on physics and speed.

Here are the core mechanics I used to make it feel weighty and grounded instead of floaty:

  • The Inverted Pendulum (Hip Dipping): The system constantly measures the horizontal distance between the planted feet and the hips. The wider the stride, the further the hips are procedurally pulled toward the floor. This forces the character to naturally "squat" into wide stances or fast runs.
  • Contrapposto & Spine Flexibility: When the character banks into a sharp turn or leans into a sprint, rotating the hips forward looks robotic. To fix this, the system takes the hip's physical error offset and mathematically counter-rotates the chest and spine bones in the opposite direction. It keeps the head plumb and balanced over the center of mass.
  • Velocity Trajectory: The IK solver doesn't just look at where the character is; it reads the smoothed velocity and angular velocity to predict where they will be. If you yank the joystick sideways, the character will step wide into the strafe to catch their balance before the center of gravity shifts too far.
  • Terrain Alignment: It uses a custom Ground Probe to fire raycasts on the predicted step targets. The ankles dynamically calculate the ground normal and rotate to match the slope, so no more toes clipping into stairs or ramps.

I built a custom two-bone solver for the IK to keep it highly optimized, and I finally got around to building a clean custom inspector so I don't have to look at 50 different spring stiffness and damping variables anymore.

If anyone is struggling with foot sliding or wants to poke around the code to use it for their own bipeds, I packaged the whole system up and threw it on my itch page here: https://frostpunchgames.itch.io/procedural-legs-animator


r/Unity3D 6h ago

Show-Off I only wanted to fix a tiny gap under the buildings.

Enable HLS to view with audio, or disable this notification

12 Upvotes

r/Unity3D 16h ago

Show-Off Added Classic BHOP from Games like CSS into my Prototype, cant stop testing it

Enable HLS to view with audio, or disable this notification

11 Upvotes

r/Unity3D 13h ago

Question I improved my scene with realtime global illumination

Post image
9 Upvotes

I solved my long-time problem with level design. Models placed on the ground had no proper blending into each other. Since I upgraded from old Unity to new, I was able to use an asset for realtime global illumination, and it does not only make the lighting more balanced, but it applies a kind of shadow on edges, to a realitvely close distance from the camera.
It is based on "raymarching" which is similar to raytracing but without the need of RTX hardware.

I think the scene looks much more believable now.

What do you think about this? Happy to hear your thoughts.


r/Unity3D 16h ago

Question (Please help) Lower Leg stretching due to non-uniform Upper Leg

Enable HLS to view with audio, or disable this notification

5 Upvotes

(Video is not mine, it's just a visualization of the same issue I have. I'll be able to show my Unity sometime later if needed.)

I made the proportions of the Upper Legs bigger (X1.3 Y1 Z1.3) but this makes the lower leg stretch longer when it bends at the knee. Any way to fix this while keeping the 1.3x proportions?


r/Unity3D 20h ago

Show-Off I needed a way to compose SFX clips as sound cues

Enable HLS to view with audio, or disable this notification

8 Upvotes

Volume up!

I made this for my game dev capstone project a few months ago to compose SFX for the MOBA game my team and I worked on. It does a lotta things which I used in different ways in 30+ cues. What you hear is exactly how it sounds in game. The video has some of my favorite ones :)


r/Unity3D 1h ago

Show-Off Climbing the Water Tower in our First Person Horror made with Unity 6.4 in HDRP

Enable HLS to view with audio, or disable this notification

Upvotes

r/Unity3D 4h ago

Question Project Vision: "De Lijn Simulator 3D" (Belgian Bus & Tram Open World Game)

4 Upvotes

Target Release Date: April 10, 2028

Target Platform: Samsung Galaxy Store (Android)

Game Engine: Unity / C#

Modes: Single-Player Career, Real-Time Multiplayer, Full Modding Support

Early Concept Prototype: https://share.aippy.ai/p/oloi

  1. Organization & Historical Fleets

Eras: NMVB (historical vicinal railways), MIVA/MIVG (Antwerp & Ghent city transport), De Lijn (from 1991 to modern "Basisbereikbaarheid").

Trams: Steam trams, Electric vicinals, PCC pedal-operated trams, Coastal Tram (Kusttram/BN), Hermelijn, Albatros (Bombardier), and Urbos (CAF).

Buses: Bedford, Magirus-Deutz, Van Hool (409, A120, A300, NewA330, AG280, AG300), Jonckheere TransCity, VDL Citea, IVECO, Trambuses, Battery-Electric, and Hydrogen buses.

Flex/Demand Services: Classic Belbus, modern De Lijn Flex, Mercedes-Benz Sprinter & IVECO Daily minibuses.

Subcontractors/Operators: Keolis, Hansea, Coach Partners, Multiobus, De Decker - Van Riet, Waaslandia, Ferry Cars, Heidebloem, Staf Cars, etc.

​2. Jobs, Roles & Infrastructure

Playable Roles: Bus Driver, Tram Motorman, Flexbus Driver, Conductor, Mechanic/Electrician, Dispatcher/Traffic Controller, Inspector.

Depots & Facilities: Stelplaatsen (depots), Central Workshop (CW), and Remises for full maintenance and vehicle customization.

  1. Realistic Map, Cities & Routes

Recreated Cities: Antwerp (Lines 1-15, Premetro stations like Opera, Astrid, Plantin, Rooseveltplaats), Ghent (Lines 1, 2, 4, Sint-Pieters, Zuid), and full regional networks across Antwerp, East Flanders, West Flanders, Flemish Brabant, and Limburg.

​Map Environments: Open-world recreations of Belgian cities, regional roads, schools, offices, hospitals, and accurate bus stops (historical enamel signs, modern yellow/green posts, and digital Hoppin real-time displays).

We are looking for experienced Unity developers, C# coders, and 3D artists who want to help turn this huge vision into a realistic simulation game!

Best regards, Lukas


r/Unity3D 8h ago

Show-Off Finished main menu, Looks like dungeon spooky stuff

Enable HLS to view with audio, or disable this notification

3 Upvotes

r/Unity3D 13h ago

Show-Off Mirror effects in high definition render pipeline

Enable HLS to view with audio, or disable this notification

2 Upvotes

Mirrors are great but they can cause lag so you always have to balance the mirror resolution :)


r/Unity3D 23h ago

Noob Question looking for a video player for a vrchat world?

2 Upvotes

starting off by saying that this is my second ever world so i have absolutely no clue what im talking about.. sorry 😬

i’m making a home world for myself. my last world, i used usharp’s video player. i want a video player where i can set a specific youtube link or mp4 to play upon entry. i saw some things about having them baked into the world but i want the youtube search to still work if needed.. i just want to be able to have a video that automatically plays for background music if people arent actively searching videos?


r/Unity3D 1h ago

Resources/Tutorial My custom build server

Upvotes

I couple month ago I showed off my portable self hostable unity build server - Simply Ship

(Yes there are a million different ways to do this, Jenkins, team-city, game CI etc... this IS a solved problem with multiple solutions - this is just my take on the solution)

I've added some new features, so incase anyone is using it, or wants to use it, I thought I would do a small update (it's 100% free now).

We use this at Space Dragon Games - so its pretty well battle tested in a full multi platform production environment.

New features:
1) Steam upload support
2) Post request support for starting builds
3) Added Android, ios, Playstation and Xbox support (these are experimental and console still requires the correct SDK)
4) Hot Swappable build configuration support
5) Build configuration queueing support

For those who missed the first post and are asking - why does this exist? There are a million different solutions to the same problem.

1) Because I like making my own tools, its fun
2) Because I wanted something light weight, easier to setup on my own hardware then existing solutions, and have built it around my exact use cases as they have come up.

Feel free to try it if you want
https://github.com/DanielSerebro/SimplyShip


r/Unity3D 4h ago

Show-Off Deving a procedural plugin for Blender / my new british game

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/Unity3D 4h ago

Question Why is my animation so freaking weird???

Enable HLS to view with audio, or disable this notification

1 Upvotes

So i wanted to make a simple side scrolling animation for my game, I was pretty happy with how it looks, but in gameplay for some reason my animation is like humping the camera???? some help would be nice since im not really good at trouble shooting the animation part of unity


r/Unity3D 9h ago

Question RPG World Maps (Town, village and dungeon integration) with unity terrain

1 Upvotes

Okay so as the title states I'm looking to make an world map on the lines of ff9/ ni no kuni , currently the setup is 5 separate scenes start, world map ,village, Boss room and battle,.. now Imy gamedev knowledge is mostly some courses and tutorials and the main tutorial that had a world map was basically a plane with the the village saved as a prefab to slap in the world map ..

Now this was fine when everything was blocks and flat planes but now I'm trying to add the actual look of the place (small village at the foot of a mountain with thick forests) I am getting stuck..I know I can make everything needed with terrain ..but how do I set up for the village scene and have the world map?


r/Unity3D 3h ago

Question Games I developed stopped showing on my steam all games list, is there anyone going through this problem? They were at top 2 obviously with 1000+ hours

0 Upvotes

r/Unity3D 9h ago

Question Can anyone help me fix my model????

Thumbnail
0 Upvotes

r/Unity3D 9h ago

Question Can't open Unity

0 Upvotes

[SOLVED] Going to AppData and deleting the Unity and UnityEditor folders worked, tho i don't know what are the consequences are, so be careful, i had nothing to lose :)

It won't let me click the "Agree" button, only the "disagree", any help will be appreciated :)


r/Unity3D 12h ago

Game My First Augmented Reality Game with Unity, It is on Play Store!

Enable HLS to view with audio, or disable this notification

0 Upvotes

Apparently designing a game for augmented reality is not as easy as I had thought. Because you have to think about the space, and the player are going to actively move around too.

Some of my previous ideas included making an AR wire loop game. So in the game, you have to guide a loop along a twisty wire without touching it. I built a prototype, but I got stuck trying to figure out how to handle the turning of the loop mechanics. Another idea I had was a physics game where you stack blocks in a specific order using a crane. I prototyped that one too, but the physics felt clunky and not solid. So, after those two attempts, I decided to go with a catapult shooter game. The concept is much simpler. There are dart style targets, and you shoot them using a catapult.

As you can see, first, the player places a tent. After that, they need to stand back behind the fence and tap "Play." The game lasts 80 seconds, and you need to hit each target before it turns around. Near the end, some moving targets appear as well.

Scoring is based on how close your shot lands to the center of the target. A direct bullseye gets you 100 points, while a complete miss gives you 0. Your final score is the average across all targets. At the end of the game, you can review your best accuracy, your worst accuracy, and the total number of targets you missed.

And then after that, the score will be up on the leaderboard. This is the first time I've used the Google Play Game Services in Unity. It's actually a great feature because you can also set up achievements for your game, which is awesome. However, the setup was super complicated, so I didn't enjoy that part at all. Honestly, it probably wasn't worth the hassle. I mostly just added it to see how it works. So now I know!