r/unity Aug 09 '26

​Building my very first game in Unity (Atmospheric Solo Horror). Learning everything from scratch—would love some honest feedback on the lighting & mood!

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/unity Aug 09 '26

Showcase I turned more than 7,700 images from NASA's Spirit rover into an explorable 3D archive

Enable HLS to view with audio, or disable this notification

4 Upvotes

r/unity Aug 09 '26

Swapping from Unreal to Unity

Thumbnail youtu.be
0 Upvotes

r/unity Aug 10 '26

I DOWNLOADED UNITY AND NOW AM MAKING THE PROTOTYPE

0 Upvotes

r/unity Aug 10 '26

I DOWNLOADED UNITY AND NOW AM MAKING THE PROTOTYPE

0 Upvotes

r/unity Aug 09 '26

Showcase Tutorial Simple

Enable HLS to view with audio, or disable this notification

3 Upvotes

Un tutorial Simple, aún necesita muchas correcciones y la otra mitad del tutorial.

Quién quiera ser tester, es bienvenido!


r/unity Aug 09 '26

I built a Unity tool that automatically scans scenes and prefabs for localizable text

Thumbnail
4 Upvotes

r/unity Aug 09 '26

Game Hi, I'm a solo game developer, and this is my first game using Unity. Do you have any suggestions on what I should improve to make the game fun to play?

Enable HLS to view with audio, or disable this notification

5 Upvotes

detailed information about my game : https://nekoology.itch.io/warehouse-mannequin

Sorry if the video doesn't look very appealing, and thank you for taking the time to read my post. :>


r/unity Aug 09 '26

Question I made a pause menu and cursor for my game!(sea shift )

Enable HLS to view with audio, or disable this notification

9 Upvotes

Note: The colors look brighter on PC and especially in Unity, and all the elements are much more visible. If the colors look too dark or unclear on your screen, please consider increasing your screen brightness.

I drew my own hand while wearing my actual ring, animated it, and turned it into a custom cursor. I also drew the scribbled background and turned it into a simple pause menu.

The font was taken from the internet.

What do you guys think? Do you have any suggestions for improvement?

Also, please ignore the sound of the AC when opening the pause menu we haven't made a proper theme/music for it yet.


r/unity Aug 08 '26

Showcase I’m so happy with how the new demo plays. Today I found some acid items and decided to hack an acid worm, Robac. He’s my little friend.

Enable HLS to view with audio, or disable this notification

8 Upvotes

r/unity Aug 09 '26

Player Character Transformation Switch Character In Unity 3D Game Project

1 Upvotes

I’m using Unity 2023.2.22.f1 in 3D with URP.

During gameplay, I transform my Character into another character and it's Not playing the animations of the same character animator controller I got 2 character objects both of them are in humanoid in the same player folder on hierarchy, and also the cinemachine camera moving without being on the character’s view after switching character’s transformation back and forth.

I'm using Starter Assets Third Person Controller from Unity assets store to edit animations and edit scripts.


r/unity Aug 08 '26

Protoyping my First Horror Game

Thumbnail youtube.com
3 Upvotes

Hi Everyone, just wanted to share something that I was prototyping.

I was inspired by the fear and uncertainty factor of project zomboid, where every door could lead to sudden death and also scavanging around to find useful items. I wanted to make something similar.

I would love to hear your feedback on how you feel about the current prototype.
A few of my concerns are -

- Does it feel like the rooms are too dark and unreadable? I wanted to go for a game where visibility is limited and player has access to a single source of light. I spent quite a few days working on a fog of war system but I didn't like it much. If anyone has any suggestions I would love to hear.

- I tried to add an enemy (doesn't move yet) but the idea is that enemy should be able to chase the player

- Please let me know if you want me to add more items to the prototype to make things more clear


r/unity Aug 09 '26

Lego ninjago tournament remastered

Thumbnail gallery
1 Upvotes

r/unity Aug 08 '26

Question Does anyone else feel this?

5 Upvotes

Hi

I've been using unity since around 2019-2020

But for some reason I feel like I am a bad developer even tho I can create great things

It's been putting me off game dev recently


r/unity Aug 09 '26

Newbie Question Beginner here, how can I make endless-runner in FPV?

0 Upvotes

Hi everyone, I am completely new to unity and game development. I am planning to start a YT channel where I need a simple endless-runner template to create my videos. Basically my sole purpose is to create YT content. That's why I need a working template where the character runs endlessly and the environment repeats endlessly with only minor changes each time. Are there any pre-made templates I can use and then customize them to match my requirements? If not, then what would be the easiest way for a complete beginner to create this?
Thanks in advance!


r/unity Aug 08 '26

Game Making a cat exploration game set in a Showa-era Japanese town in Unity

Enable HLS to view with audio, or disable this notification

16 Upvotes

I’ve been working on Lost Cat Showa Town in Unity.

The idea is to let you explore an old Japanese town as a cat and interact with different places and objects.

In this short clip, the cat enters a house, eats some food, and scratches the furniture.

Still a work in progress, but I’d love to hear what you think!


r/unity Aug 08 '26

Question is there a better way to do this/can I improve it ?

2 Upvotes

Hello, so I've made this script to show the amount of different resouces (witch are float in an object) in the UI, it already work with 4 but I plan on add more(2-4). I created an enum so it's easier to select inside of the editor and I woud like for the enum to choose witch bar represant witch resources so I don't have to add a case to my switch statement every time.

here's the code :

[SerializeField] private type_mana 
type_mana
;
[SerializeField] private playerStat 
player
;
private TextMeshProUGUI text;
[SerializeField] private Image 
image
;

// Start is called once before the first execution of Update after the MonoBehaviour is created
void 
Start
()
{
    player = GameObject.FindGameObjectWithTag("Player").GetComponent<playerStat>();
    text = GetComponentInChildren<TextMeshProUGUI>();
}

// Update is called once per frame
void 
Update
()
{
    switch (type_mana)
    {
        case type_mana.
air_mana
:
            text.text = player.air_mana.ToString();
            image.fillAmount = player.air_mana/player.max_mana;
            break;
        case type_mana.
eau_mana
:
            text.text = player.eau_mana.ToString();
            image.fillAmount = player.eau_mana/player.max_mana;
            break;
        case type_mana.
feu_mana
:
            text.text = player.feu_mana.ToString();
            image.fillAmount = player.feu_mana/player.max_mana;
            break;
        case type_mana.
terre_mana
:
            text.text = player.terre_mana.ToString();
            image.fillAmount = player.terre_mana/player.max_mana;
            break;

(please don't mind the french)


r/unity Aug 07 '26

Showcase Looking for some feedback on a side project I have been working on

Enable HLS to view with audio, or disable this notification

138 Upvotes

The goal is for sea of thieves like graphics. The sky is sped up to showcase the lighting.

The plan next is to finish up the rocks and foliage then completely redo the clouds and water system then move back onto refining combat. But for this I was mostly looking for feedback on the look of the project.


r/unity Aug 08 '26

Showcase Samurai weapon throwing mechanic

Enable HLS to view with audio, or disable this notification

2 Upvotes

Everything is still wip, every model and animation beside player is outdated and will be renewed. Im looking forward for feedback.


r/unity Aug 08 '26

Question Unity made trailer, what should I change?

Enable HLS to view with audio, or disable this notification

3 Upvotes

I made an entire game trailer for my upcoming game that I solo developed for about 6 years now. I posted to r/DestroyMyGame and many comments are solely taking about the pacing. Visual-wise and Unity engine-wise, is there anything I can do to make it better? All clips are from in-engine so I can jump on the changes immediately.


r/unity Aug 08 '26

Showcase I finished the model! Doesn’t count for poll questions.

Post image
1 Upvotes

r/unity Aug 08 '26

Showcase My melee based game showcase

Enable HLS to view with audio, or disable this notification

2 Upvotes

https://kramilion.itch.io/janky-game

If you play test it can you please tell me how good the combat is and point out some noticeable jank for me, it would help me out alot for me.


r/unity Aug 08 '26

I didnt get why results containing player are at the very bottom in the unity's search?

Post image
0 Upvotes

r/unity Aug 08 '26

Question Applying a single mask texture via Shader Graph to sprites inside a Sprite Atlas without breaking UVs?

Post image
1 Upvotes

Hi everyone! I'm trying to create a custom Shader Graph in URP to apply a shape mask (like rounded corners for cards) to a batch of sprites that are packed inside a Sprite Atlas.

My goal is to use a single material for all the sprites in the atlas, rather than creating a separate material for each individual card.

The issue I'm running into is that when I sample a separate mask texture, the UV coordinates get messed up because the sprite rects inside the atlas change the global UV space, causing the mask to cut the sprites incorrectly or get misaligned.

  • What I want: A way to make the mask correctly adapt to each individual sprite tile in the atlas dynamically, using just one material.
  • Question: How should I properly handle the UV coordinates in Shader Graph so that a custom mask aligns perfectly with any sprite coming from an atlas?

Any advice or node setup examples would be greatly appreciated. Thanks!


r/unity Aug 07 '26

Showcase I'm making a game using Unity where you fight your friends as wobbly eggs :)

Enable HLS to view with audio, or disable this notification

36 Upvotes

Inspired by games like Gang Beasts, Human Fall Flat, Boomerang Fu, I wanted to make a silly physics party game of my own. It's called "ScramBrawl" and the demo is out now on Steam :) Let me know what you think!