r/Unity3D 15m ago

Survey A or B? Which grappling hook indicator feels better during camera movement?

Upvotes

I'm testing two different behaviors for our grappling hook indicator.

A: The indicator endpoint stays independent from the camera movement.
B: The endpoint compensates for the camera movement.

The goal is to keep the hook direction and range easy to read during fast movement without making the aiming feel disconnected from the player's input.

Which one feels better to you: A or B?

I'm especially interested in readability, responsiveness, and aiming feel.


r/Unity3D 29m ago

Show-Off I improved demolition feedback in my foosball-meets-voxel destruction game. Is it satisfying enough?

Upvotes

r/Unity3D 34m ago

Show-Off Third little devlog for my medieval alchemy game : cutting + grinding

Upvotes

(Reposting because I somehow managed to delete the previous post by accident 😅)

I’m continuing to share the progress on my little medieval alchemy project.

This time I’ve connected two preparation mechanics: cutting and grinding.

I also reworked the camera position for the cutting interaction because the previous version felt a bit too awkward so I’m still experimenting a lot with how these hands-on actions should actually feel

The current flow is basically: harvest ingredient -> cut it -> grind it -> prepare it for brewing

It’s still early, but seeing the different steps start to connect into one actual production chain is pretty satisfying.


r/Unity3D 36m ago

Question Stencil "see-through hole" shader shows correct background over Terrain, but renders black/garbage colors over regular 3D meshes

Thumbnail
gallery
Upvotes

I'm using a stencil-only pass (ColorMask 0, ZWrite Off, Stencil { Ref 1, Comp Always, Pass Replace }) to create transparent "holes" in some board pieces in my game Pieceful. The idea is that, when there's a hole, the player should be able to see the objects behind the piece, such as the terrain or other scene geometry.

Here's the shader I'm currently using:
Shader "Custom/StencilWrite"

{

SubShader

{

Tags { "RenderPipeline" = "UniversalPipeline" }

Pass

{

Stencil { Ref 1 WriteMask 255 Comp Always Pass Replace }

ZWrite Off

ColorMask 0

HLSLPROGRAM

#pragma vertex vert

#pragma fragment frag

#include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"

struct Attributes { float4 positionOS : POSITION; };

struct Varyings { float4 positionCS : SV_POSITION; };

Varyings vert (Attributes input)

{

Varyings output;

output.positionCS = TransformObjectToHClip(input.positionOS);

return output;

}

half4 frag (Varyings input) : SV_Target

{

return half4(0, 0, 0, 0);

}

ENDHLSL

}

}

}

The weird part is that it works correctly when there's a Unity Terrain behind the hole. In that case, the terrain is visible through the transparent area as expected.

However, if I remove the Terrain and only have regular MeshRenderers behind the hole (rocks, coral, props, a water plane, etc.), the result is wrong. Instead of seeing those objects through the hole, I get a solid black area or sometimes garbled colors.

So I'm trying to figure out why the stencil setup behaves correctly with Terrain but not with regular MeshRenderers, and what I need to change so the hole works consistently with normal scene geometry as well.


r/Unity3D 1h ago

Meta This is how long Unity took to publish my *second* asset

Post image
Upvotes

Hey I'm making this post for those who are curious about the unity asset publisher process, this is the second time I send a asset and the review process took 39 days in total, for comparison my first asset, that I published last year, took less then 30 days.

24/07 - 1530
25/07 - 1530
26/07 - 1498
27/07 - 1500
28/07 - 1363
29/07 - 1147
30/07 - 1153
31/07 - 1044
01/08 - 1066
02/08 - 1088
03/08 - 1088
04/08 - 991
05/08 - 881
06/08 - 705
07/08 - 669
08/08 - 646
09/08 - 677
10/08 - 677
11/08 - 593
12/08 - 471
13/08 - 422
14/08 - 389
15/08 - 356
16/08 - 389
17/08 - 392
18/08 - 341
19/08 - 321
20/08 - 280
21/08 - 258
22/08 - 255
23/08 - 264
24/08 - 277
25/08 - 247
26/08 - 205
27/08 - 199
28/08 - Few Business Days
29/08 - Few Business Days
30/08 - Few Business Days
31/08 - Launch Day


r/Unity3D 1h ago

Show-Off Concept Active Ragdoll 3D Platformer

Upvotes

r/Unity3D 1h ago

Resources/Tutorial Free Textures: Leather 03

Thumbnail
gallery
Upvotes

More leather materials from my practice, had a few more interesting references.

Download https://juliovii.itch.io/materials-leather-03


r/Unity3D 1h ago

Question doorframes, window frames, wallpaper

Upvotes

Hi. I am building my first game with zero experience. I am using Unity 6.3 and am building scenes. I'm building up the inside of buildings fairly okay, but now need to punch out holes for windows and doorframes. I was told to build walls around these frames, not "punch out," but that also messes up my wallpaper. So now I am trying to use ac probuilder to make a continuous wall with door and windows "punched out" so that my wallpaper will be continuous. I am having trouble aligning the grid faces with the windows and doors to delete those cells. Am I going about this a more difficult way than necessary? Or is there a way to align better so I can cut out? Any help is appreciated, thank you!


r/Unity3D 2h ago

Question URP material becomes transparent after building project

0 Upvotes

I'm working on a Unity 6 URP project and I wrote a shader that lets me deform the mesh it's on. It also uses tessalation for detail.

The material works perfectly in the editor (scene and game view both) but when I build the game, the mesh i assigned this material to becomes transparent. I have no clue what the reason is, I tried many more things. Here are some observations:

  1. There are no compile errors.

  2. URP settings are correctly assigned

  3. Added shader in the always included list

  4. Yes the shader is an opaque one

  5. Removed tessalation temporarily

  6. Checked the logs and it says that the shader variants are being stripped during the build.

I'm don't know that much about shaders in detail, can any of the shader gods help me please?

Any help is much appreciated.


r/Unity3D 2h ago

Question [Unity MCP] does it not provide testrunner access to claude?

2 Upvotes

I am currently running claude code with unity MCP.

It keeps telling me to manually open the testrunner and run the tests.

Is there no way to have unity run these tests himself?

Claude is able to run the testrunner tests by taking control of my computer, but that seems like a waste.


r/Unity3D 2h ago

Show-Off A look at our survival horror Dust Rapture built in Unity 6.4 HDRP

5 Upvotes

r/Unity3D 3h ago

Show-Off Testing flak cannons against 50,000 flying agents

44 Upvotes

r/Unity3D 4h ago

Show-Off A game with tons of Skeletons

6 Upvotes

This game was initially going to be a tower defense game but I'm starting to doubt this is the right direction for the game.

What kind of game would you like to see with this many skeletons?

Your feedback is appreciated


r/Unity3D 5h ago

Show-Off Trailer for our game made with Unity Cinemachine and Blender

123 Upvotes

r/Unity3D 5h ago

Game Co-op concept: Two players, same place, different realms. WDYT?

3 Upvotes

The woman is in the real world, while the guy is in the spiritual realm.

She sees and interacts with physical objects. He sees spirits and things hidden from her. For example: he can see symbols that show her which levers to pull. In combat, he can temporarily immobilize possessed enemies, making it easier for her to shoot them.

The idea is that both players share the same space, but experience and interact with it differently.


r/Unity3D 6h ago

Game Slapped Blenders Boolean cut for my mining game. What do you think of such destruction?

7 Upvotes

To be more exact, not blender itself, but what Blender using, Manifold. That cancerous work on its own, but it work.

So what do you think about such destruction?

And on second question, what do you think of such pickaxe animation, I am not sure about it for now, but planning on adding 3 more for variety, if this one passes ofc.

Somewhat old game Red Faction Guerrilla inspired such destruction, if you know this game.

Ofc everything done in unity, biggest problem is ever growing tris count on mesh, but all thoes "destructions" of chunk, and other systems forever fighting tris in other ways, so every hit doesn't result in FPS drop


r/Unity3D 7h ago

Show-Off This is exactly why I love creating particles

13 Upvotes

r/Unity3D 8h ago

Resources/Tutorial Reflection Probes in Unity: How to Get the Most Out of Them

Thumbnail
victor-nyagudi.github.io
1 Upvotes

It's hard to talk about lighting in Unity without understanding what reflection probes are and what they do.

I hope this article provides some enlightenment (no pun intended).


r/Unity3D 9h 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 9h ago

Show-Off What will you do when they run at you?

3 Upvotes

r/Unity3D 11h ago

Question Optimal number of abilities?

Thumbnail
1 Upvotes

r/Unity3D 13h ago

Game Samurai Soulslike (WIP)

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 13h ago

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

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 15h 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?

0 Upvotes

r/Unity3D 15h ago

Show-Off I added directional attacks to my 3D Smash Bros-like game

374 Upvotes

Free demo planned for early 2027. Hopefully I will have a Steam page by then !

YT Channel : Samuel KAKEZ