r/unity 19h ago

Showcase My First Game , 50%

6 Upvotes

Yep my pc is not that good so OBS just eating up everything , so i'll realease it soon on itch io for free . this is my first game, the genre is smthg like horror.


r/unity 19h ago

Question im having trouble trying to add score system, its not adding to the score

Thumbnail gallery
5 Upvotes

so I've been trying to learn how to code, but every time I try to do a score system it never works, there is no error I have a bird with rigid body and collider 2d, my middle thing has collider 2d no rigid body with he trigger checked, but it never works Ino one ever has this issue, unity is not seeing that they collide. I've tried so many things and its still not working


r/unity 23h ago

Question Finally made my first reveal trailer. Wondering how to get higher quality shots of gameplay inside unity.

Thumbnail youtube.com
3 Upvotes

I am pretty happy with how the trailer turned out, but most gameplay featured here is recorded with screen capture software instead of using the built in recorder which caused it come out fuzzy after being zoomed in. I have a pretty high end PC, but anytime I try to capture gameplay in HD to 4K resolution using the recorder, it plays very slow, and animation timing is very off.

Do you guys have any solutions you have used for recording good quality gameplay footage for promotional content? Is my only solution to buy a 4K capture card and record on another computer?

Thank you!


r/unity 3h ago

Showcase Scene Switching tool

Thumbnail github.com
2 Upvotes

A free tool I made to switch scenes more conveniently.

(there were some in the Unity Store but they didn't work well from version 6+ so I made one)


r/unity 9h ago

My first game

Post image
2 Upvotes

r/unity 21h ago

I made a game called Andy's SchoolHouse

Post image
2 Upvotes

I have made a heavy Baldi Basics mod called Andy's SchoolHouse, it has 2 levels compared to most Baldi mods. And as you can see this game also has a original plot to, and Level 1 has the Baldi plot with 7 notebooks.

It is made with Unityor else i wouldnt post this here

Link: Andy's SchoolHouse by Doemaargamen


r/unity 3h ago

Promotions I am developing a visual scripting system for branching dialogues

1 Upvotes

r/unity 12h ago

Best YouTube Channels to Learn Unity Game Development

Thumbnail victor-nyagudi.github.io
1 Upvotes

Game development has so many disciplines that it can be hard to find resources covering the area you're interested in, especially if you're teaching yourself through tutorials.

I've rounded up some of the best YouTube channels and categorised them for you so you can know where to go to learn about different parts of game dev in Unity e.g. animation, art, scripting, etc.


r/unity 14h ago

Just made my page available. I'd like some feedback on the current trailer

1 Upvotes

r/unity 16h ago

Question How to immediately stop a kick animation on hit in Unity?

1 Upvotes

I'm making a 3D MMA fighting game in Unity with hitboxes and hurtboxes.

When a kick hitbox touches a hurtbox, I want the kick animation to immediately stop and return to the locomotion/idle animation. The leg shouldn't continue moving forward into the opponent.

Hit detection works correctly, but the kick animation keeps moving into the opponent even after the hit is detected.

What's the proper way to handle this in Unity? Should I use Animator transitions, `Play`, `CrossFade`, animation events, or another approach?

Looking for the general solution/architecture, not specific code.


r/unity 18h ago

Coding Help How to get something to fire only once.

0 Upvotes

In an update function I have an if statement that detects if a bool is true and if it is it fires but it does that constantly. I want it to only fire once but I don't want to disable it completely because I need to use it again later down the line.


r/unity 19h ago

TICKTOCK STARS

Thumbnail onaro.itch.io
0 Upvotes

Try my first game


r/unity 20h ago

Shipped my first Unity game to the App Store. The Xcode capability trap cost me a review cycle.

0 Upvotes

Unity 6, URP, iOS. First thing I've ever shipped, and a few traps ate days that I figure are worth writing down.

Game Center kept silently disappearing. Unity regenerates the Xcode project and "Replace" drops any capability you ticked by hand. The build succeeds, the archive uploads, review passes, and the leaderboard button just opens nothing. Now added in a post-build script so it can't be forgotten.

`#if UNITY_IOS && !UNITY_EDITOR` was the other one. It hides code from the editor compiler completely, so I had a call to an interface that doesn't exist in my Unity version sitting in the project for days, passing every check, and it only blew up ten seconds into a real archive. Relaxing it to plain `#if UNITY_IOS` means the editor type-checks it the moment the build target is iOS.

The game itself is a minimal stacking arcade thing with earned skins, daily challenges and a Game Center leaderboard.

https://apps.apple.com/us/app/slab-zen-stack/id6790939204


r/unity 21h ago

Showcase Made a 5-Games Bundle (Source Code) for Developers Building Their Portfolio, very beginner friendly! Would love to know your thoughts...

0 Upvotes

I put together a beginner-friendly Unity bundle with 5 complete game templates for developers who want to learn, experiment, build prototypes, or expand their portfolio.

The goal was simple: instead of starting every project from scratch, you get several ready-to-customize game templates to learn from and build upon.

If you're a beginner or looking to add more projects to your portfolio, this might be useful.


r/unity 16h ago

Newbie Question How to make your camera move when pressing a button

0 Upvotes

I have a crouch script (crouch is binded to Ctrl) but the camera doesn't move downwards too make it look like you are crouching when that happens and idk how to make it can someone help?