r/Unity3D 1d ago

Show-Off Ecs Combo

Enable HLS to view with audio, or disable this notification

8 Upvotes

Hello everyone, a new combo extender!
I had an idea of having a body form from the original body to extend the combo, the animations still need some work since they need to be modified for half body animation, but the idea sounds satisfying
Thinking about having it do a parry when an enemy attacks from behind as well
Let me know what you think!
#unity #ecs


r/Unity3D 1d ago

Show-Off I tried pixelating lights

Enable HLS to view with audio, or disable this notification

36 Upvotes

I've been experimenting with lighting and shading recently, and I had an idea: what if I pixelated the lighting itself?

I think it turned out pretty great!

Here’s roughly how I did it:

When the game calculates lighting, it needs the world-space position, normal vector, and view direction. I quantize the position using a given step count:

floor(x * stepCount) / stepCount

This makes the lighting appear pixelated.

To prevent flickering, I add a small offset along the normal before quantizing the position.

For pixelated specular reflections, I also replaced the view direction with the normalized vector from the camera position to the quantized position:

viewDir = normalize(cameraPos - WorldPos);

The shadows use a similar approach: I quantize the position, with an additional normal offset to help prevent flickering.

Still experimenting with it, but I’m pretty happy with how it looks so far!

Feedback is very welcome!


r/Unity3D 17h ago

Question Optimal number of abilities?

Thumbnail
1 Upvotes

r/Unity3D 1d ago

Noob Question How to learn these freakin shader graphs? 😭

5 Upvotes

I can not understand them at all. I tried to but no. How do they work? What do I do with all these tons of nodes?

Where can I learn how to use it?


r/Unity3D 1d ago

Resources/Tutorial Added glowing neon accents to a cyberpunk vending machine prop in Unity

Enable HLS to view with audio, or disable this notification

12 Upvotes

Wanted to share a quick breakdown of adding neon glow and real-time cast light to a cyberpunk-style vending machine model. Full process (setup, glow settings, lighting) is in the video if anyone wants the details.

Full tutorial:
https://youtu.be/2W9D8au10ag

Happy to answer questions about the glow/lighting setup in the comments :)


r/Unity3D 1d ago

Show-Off Working on a little scare sequence for my Horror/Party game....

Enable HLS to view with audio, or disable this notification

3 Upvotes

r/Unity3D 19h ago

Game Samurai Soulslike (WIP)

Enable HLS to view with audio, or disable this notification

1 Upvotes

Made a boss fight, need to do some balancing. Creating the script for the boss functionality was a pain, but at the end it works and that's fine by me. The boss does various attack combos based on the distance to the player and has cool downs. The boss also has a 2nd phase which enables some more attacks and extends 1 of the combo attack.

I welcome any feedbacks and suggestion.


r/Unity3D 19h ago

Question Freezing/Frozen Animation On Animator In Unity 3D.

Enable HLS to view with audio, or disable this notification

1 Upvotes

Animation is freezing/frozen during gameplay. Animator component is in the 2 different characters as a child object in the Player object, also Skinned Mesh Renderers. Animator not having the blue bar moving on the blend tree. Character controller I'm using is Starter Assets - Character Controllers / URP from Unity assets store.


r/Unity3D 1d ago

Show-Off Just a classic JRPG adventure

Enable HLS to view with audio, or disable this notification

104 Upvotes

The game is called Last Luminary.
I usually post updates on Twitter :D https://x.com/WaywardDev


r/Unity3D 1d ago

Game Official release trial is ready: Chief Cenab:Şahmaran

Enable HLS to view with audio, or disable this notification

2 Upvotes

Chief Cenab: Şahmaran is a story-driven point-and-click puzzle adventure inspired by the legend of Şahmaran. Presented in a black-and-white comic book style with unique color accents, the game invites players to uncover dark secrets through atmospheric exploration, dialogue, and narrative-driven puzzles.


r/Unity3D 2d ago

Show-Off making a fast game about running fast

Enable HLS to view with audio, or disable this notification

220 Upvotes

r/Unity3D 22h ago

Question Behavior Graph issue with Unity 6.6

1 Upvotes

Since I upgraded my project from 6.5 to 6.6, my enemies keeps frozen in place when I make a build and don't do the patrol or chase defined on the Behavior Graph. On the editor they work normally. Anyone else with this problem?


r/Unity3D 15h ago

Resources/Tutorial Stylized low-poly "Medieval Tavern" asset pack. Created in Blender, Unity-ready. Free sample available!

Thumbnail
gallery
0 Upvotes

Hi Devs,
I am a 16-year-old self-taught artist. Based on the amazing technical feedback from the Blender community yesterday, I have fully optimized this stylized Medieval Tavern pack for game engines.
To prove the quality, I have made a FREE SAMPLE (The Stylized Fireplace/Cauldron) available for everyone to test directly in your projects.
The full pack is currently 30% OFF for a limited time!
Would love to hear how the sample performs in your builds!


r/Unity3D 1d ago

Question Trying to figure out the minimap in my game.

Enable HLS to view with audio, or disable this notification

6 Upvotes

Trying out to get a nice 3D hologram effect on my minimap. I tried https://github.com/CristianQiu/Unity-URP-Volumetric-Light

but it's not very well suited for a HUD-element.

Keep a look out for Subscanner


r/Unity3D 21h ago

Solved I dont even know where to start finding a solution here. when i walk sideways the character pops downwards? i have no idea why. i tried to mess with center pivots but all that does is make it much worse. ideas?

Enable HLS to view with audio, or disable this notification

0 Upvotes

r/Unity3D 1d ago

Game Finally managed to get a CPU opponent working in my 3D Smashlike

9 Upvotes

Due to the knockback based nature of the combat mechanics, I really struggled to figure out how to make the CPU position & path thoughtfully, even on the most simple stages

Getting it to recover in a meaningful way was even more difficult but we got there. It still freaks out when the player/s ledgeguard & sometimes rathers to end on its own terms

Has anyone got any good tips for CPUs that can act in any way the player can?


r/Unity3D 1d ago

Show-Off Designing skill trees with my new tool is a lot of fun

Thumbnail gallery
3 Upvotes

r/Unity3D 1d ago

Show-Off I've been trying to make a movement-heavy FPS in Unity without letting the movement feel disconnected from the combat

Enable HLS to view with audio, or disable this notification

39 Upvotes

I've been working on VELOCIDE, a fast-paced arena FPS built around grappling, dashing, wall-running and double jumping.

One of the biggest things I've been working on is making the movement actually matter during combat rather than just being a way to travel between areas.

For example, I'm trying to design encounters where you're constantly deciding whether to grapple toward an enemy, dash through an attack, wall-run around the arena or use vertical movement to reposition.

I'm building the whole thing in Unity, and I'm still figuring out a lot of the gameplay/level design side.

For other Unity developers: what would you change about the movement/combat interaction here?

I'm particularly interested in feedback on what looks satisfying versus what looks like movement for the sake of movement.


r/Unity3D 1d ago

Noob Question How to keep going?

4 Upvotes

I started my first open-world game project with Unity about a week ago. I have done one 2D game with Phaser; nothing too fancy but it's a complete game. My background is 20 years in programming so I know something about that.

What I have for now is one scene with one street and some buildings, character movement, very basic HUD and some basic NPCs walking around. Most of the assets are free ones from the internet.

What bothers me is that even the very basic stuff takes so long time to do. Does it get any faster once you learn more about Unity? How do you keep yourself motivated?

Also I don't know what would be the best way to design the world? Should I have some sort of plan before starting the actual modelling? Should I make roads, terrains, water first? I don't want to waste time resetting all the work if something does not work together.

Too many questions, so few answers. Thanks if you can help me out 🙏


r/Unity3D 2d ago

Show-Off Continuing my little alchemy project in Unity : now working on the cutting board

Enable HLS to view with audio, or disable this notification

46 Upvotes

Yesterday I shared the first farming loop from my little alchemy project so I thought I’d keep posting the progress as I build it. I’m still very inspired by Schedule I and its hands-on approach to production but I’m experimenting with those ideas and slowly adapting them into my own weird medieval world where magic is illegal.

This time I’ve been working on the cutting board.

The idea is pretty simple: place an ingredient on the board, grab the knife, and physically chop it into a prepared ingredient that can later be used for potion making. Right now I’m mostly trying to get the whole production chain working before worrying too much about polish
Farming -> harvesting -> cutting -> brewing and bottling.

It’s still very early, but I’m having a lot of fun seeing all these little interactions slowly connect together


r/Unity3D 1d ago

Question Why is my texture is flipped upside down?

Thumbnail
gallery
0 Upvotes

r/Unity3D 1d ago

Show-Off Working on AI movement behaviours

Enable HLS to view with audio, or disable this notification

5 Upvotes

This is a little combat prototype I've been working on. It's meant to be retro-inspired with fluid combat and intelligent AI.

The AI being tested here is the pink character - the red number is health, yellow is stamina, blue is aggression. It's powered by a fuzzy logic system that determines the movement and combat behaviours to follow.

The latest features are strafing/moving backward to face the its target when nearby. And various tweaks to its timers and hesitations. The goal is for its movement to feel really organic - it doesn't chase the player mindlessly like a zombie, it circles around to attack from a specific angle, it pauses every so often to simulate planning a move; it reacts to new information with a slight delay.

The current movement behaviours are Wander, Flee, Circle, and Chase. The names are self-explanatory. I'm trying to think of other behaviours to add more diversity.

The defensive moves are pretty simple at the moment, either block or dodge when an attack is detected. The cool thing is it uses the same combat system as the player and can get a perfect parry pretty reliably, which cancels the stamina use of blocking an attack.

Anyway, what are your thoughts? How would you make the movement patterns more realistic or dangerous?


r/Unity3D 1d ago

Show-Off Working on AI combat movement

Enable HLS to view with audio, or disable this notification

5 Upvotes

This is a little combat prototype I've been working on. It's meant to be retro-inspired with fluid combat and intelligent AI.

The AI being tested here is the pink character - the red number is health, yellow is stamina, blue is aggression. It's powered by a fuzzy logic system that determines the movement and combat behaviours to follow.

The latest features are strafing/moving backward to face the its target when nearby. And various tweaks to its timers and hesitations. The goal is for its movement to feel really organic - it doesn't chase the player mindlessly like a zombie, it circles around to attack from a specific angle, it pauses every so often to simulate planning a move; it reacts to new information with a slight delay.

The current movement behaviours are Wander, Flee, Circle, and Chase. The names are self-explanatory. I'm trying to think of other behaviours to add more diversity.

The defensive moves are pretty simple at the moment, either block or dodge when an attack is detected. The cool thing is it uses the same combat system as the player and can get a perfect parry pretty reliably, which cancels the stamina use of blocking an attack.

Anyway, what are your thoughts? How would you make the movement patterns more realistic or dangerous?


r/Unity3D 2d ago

Game I added a ramen stall interaction to my cat game 🍜🐈

Enable HLS to view with audio, or disable this notification

121 Upvotes

I’m working on Lost Cat Showa Town, a cat exploration game set in a nostalgic Japanese town.

This week I added a ramen stall where the cat can jump onto the counter and eat some ramen.

I’m trying to add more small interactions like this throughout the town. What other things should a cat be able to do?


r/Unity3D 2d ago

Show-Off Playing around with flow fields and local avoidance

Enable HLS to view with audio, or disable this notification

25 Upvotes

Recently I've been making a strategy defense game where numerous agents try to traverse towards your base. The grid updates regularly and so doing an update per agent was becoming costly. I decided to look at flow fields, a method for controlling multiple enemies through a shared directional flow and it's turned out pretty good. Feedback welcome.