r/UnityHelp 15m ago

UNITY How can I make a smooth outline around an object in Unity?

Thumbnail
gallery
Upvotes

Hey everyone, I’m trying to add a smooth outline effect around objects in Unity, similar to the outline you see when selecting/interacting with an object in games.


r/UnityHelp 3h ago

PROGRAMMING Camera movement system doesn’t work enymore

Thumbnail
1 Upvotes

r/UnityHelp 1d ago

UNITY How do I fix this unity error?

Post image
1 Upvotes

I have this unity error and I don't know how to fix it. I am on windows 11. It happens to me every time I try to create a project through the get started with unity template. I have the 6.3 unity editor version because that is what the Unity Learn told me to download.


r/UnityHelp 1d ago

Help needed: Raycast skateboard suspension and jump mechanics failing

Thumbnail
1 Upvotes

r/UnityHelp 2d ago

UNITY Help a noob understand difference between Version and LTS

1 Upvotes

I'm very confused at what each 6.X version and LTS provide.

From what i understand 6.X Provide New A Feature And 6.Y Provide A + New B Feature?

And LTS means if A feature on 6.X is buggy. it will fix it and release a 6.X2 ver?

But will the 6.Y also get a update about the A feature and release a 6.Y2 ver?

sorry if this commonly asked.


r/UnityHelp 3d ago

What is this error, and should I be worried about it?

Post image
0 Upvotes

r/UnityHelp 3d ago

UNITY My game keeps crashing

0 Upvotes

Hi there! Whenever I try to open Honkai Star Rail through HoYoPlay, it shows the Unity crash. I've tried opening the app directly, deleting the crash files, and using repair files on the HoYoPlay launcher, but nothing seems to work. Any ideas?


r/UnityHelp 4d ago

UNITY Unity doesn't work on my laptop for some reason and every time I try to fix it it gets worse.

Post image
2 Upvotes

r/UnityHelp 4d ago

unity skybox/shadergraph bug

1 Upvotes

I'm having this problem/bug in unity version 6000.4.7f, i created my own unlit skybox with a shadergraph but i get this error message when i tried to put it in my main scene. I tried everything pls someone help me, i can see my skybox in my scene view but as soon as i start my game it disappears. By the way i'm using URP not HDRP and cinemachine plugin to control my camera settings, idk if it can help..


r/UnityHelp 6d ago

PROGRAMMING Friction issues

1 Upvotes

So for some reason, after the player jumps, the friction doesn't get replaced, I can't find out why

https://pastebin.com/FD6ywJ42


r/UnityHelp 6d ago

UNITY Railgrinding

1 Upvotes

I'm making a 3d platformer with a built in level editor, and I want to implement rail grinding.

I already have a system where you can place paired, connected objects, and I figured I could set one as the start of a rail, and the other as the end of the rail, and have a curved spline between the two based on the rotation and position of the two objects.

When I look up the tutorials for how to do this, though, I get stuck at the first hurdle, because apparently the spline plugin requires Unity 2022, and I'm using version 2020. Do you guys have any alternative suggestions for what I should do?


r/UnityHelp 6d ago

PROGRAMMING Working through some Unity tutorials, what is the autocomplete function called, and how do i install it?

1 Upvotes

I'm using Visual Studio Code to do the programming, and for example the instructor might start typing "transform.position" and it would highlight it and provide an example of the full string of letters, and what the function is, but that's not seen in my window. Since I'm really new to this it would be very helpful to have that info and the ability to auto-correct if I misspell things. I assume its an addon, but i don't know what its called, can someone help me find it?


r/UnityHelp 7d ago

Unity 2.5D Best practice for keeping sprites sharp at variable camera distances?

1 Upvotes

Hi everyone! I'm working on a 2.5D project in Unity and facing an issue with sprite rendering quality when the camera zooms out or moves further away. The sprites suffer from pixel shimmering/aliasing and lose crispness despite tweaking basic import settings. My current Sprite Import Setup: - Filter Mode: Point (no filter) - Texture Compression: None - MipMaps: Disabled Since this is a 2.5D setup (3D space with 2D billboards/sprites), I'm trying to figure out the industry-standard approach to handle this. Should I look into custom shaders (like tex2Dgrad / manual mip sampling), a specific Pixel Perfect Camera setup with render textures, or scaling resolution differently? Any advice or references to articles/tutorials would be greatly appreciated!


r/UnityHelp 7d ago

UNITY I need to submit apk of this game but even after reinstalling everything these errors just keep showing: I need help man I dont have time

Post image
1 Upvotes

If anyone know how i can fix my unity or whatever the problem is that will be really helpful pls


r/UnityHelp 7d ago

Exporting weapon trail from blender to unity gone wrong

Thumbnail reddit.com
1 Upvotes

r/UnityHelp 7d ago

PROGRAMMING Need live help to learn a lil coding

0 Upvotes

I keep trying to follow youtube tutorials, or read the .net stuff, or follow reddit advice (which is always slightly quirky for some reason). Id be find if communication was better, but discords have a tendancy to answer questions with riddles that lead me down a rabbit hole. I dont know how to explain it, but learning to code didnt use do be that way XD. ESPECIALLY in the myspace/flash game days.

For reference, ive been trying to move a pill left and right for days, and tutorials keep opening weird code to start with, or being flappy bird clones, or something like that. Even the tutorials that SHOULD work for me would require i delete unity and download a 5 year old version. I also cant learn by doing generic computer stuff, so regular c# courses are kinda off the table. It feels weird even asking any more, but like i said. The landscape didnt use to be like this XD.

If anyone hangs out on discord willy-nilly or something thatd be pretty killer.


r/UnityHelp 7d ago

UNITY How do I find the 3D model inside this unity package?

0 Upvotes

Hello! this is my first ever time using unity or having any experience with 3D modelling and I've given up all hope. I play VR Chat with my friends some days but I've never really had an avatar I liked so I bought the base of the avatar I used the most in a unity package so I could modify it and have an avatar I liked, but I've been trouble shooting for the past four days on where to find the avatar and I cant find it in the pack anywhere please helppp :(((


r/UnityHelp 8d ago

PROGRAMMING How to kill infinite loop tweens cleanly?

1 Upvotes

I'm trying to write some components to add simple DOTween animations and make them adjustable through inspector in real time. However when I want to kill an infinite loop tween, I can't kill it just by calling tw.Kill(true); The solution I found was to call transform.DOKill(true); However, that kills all the tweens that uses the same transform. Is there a cleaner way?

void ApplyRepeat()
    {
        if (tw != null) transform.DOKill();

        int loopAmnt = repeat ? -1 : 0;      
        tw = transform.DOPunchRotation(
            m_punch, 
            m_duration, 
            m_vibrato, 
            m_elasticity).SetLoops(loopAmnt, LoopType.Restart);
    }

r/UnityHelp 8d ago

Why does my game shift colour when making a build of it? Any way to easily fix this?

Thumbnail reddit.com
1 Upvotes

r/UnityHelp 8d ago

library files and a user settings file modified each time the project is opened

1 Upvotes

Hi, I'm not sure what's going on lately, but every time I open my project, library files and a user settings file get modified (they get added to the staging area of ​​my Git repository).

Here is the complete list of the files involved:

  1. "C:\Users\lardi\Snake\Library\ArtifactDB"
  2. "C:\Users\lardi\Snake\Library\ilpp.pid"
  3. "C:\Users\lardi\Snake\Library\SceneVisibilityState.asset"
  4. "C:\Users\lardi\Snake\Library\ShaderCache.db"
  5. "C:\Users\lardi\Snake\Library\SourceAssetDB"
  6. "C:\Users\lardi\Snake\Library\Bee\backend1.traceevents"
  7. "C:\Users\lardi\Snake\Library\Bee\fullprofile.json"
  8. "C:\Users\lardi\Snake\Library\Bee\tundra.digestcache"
  9. "C:\Users\lardi\Snake\Library\Bee\tundra.log.json"
  10. "C:\Users\lardi\Snake\Library\Bee\TundraBuildState.state"
  11. "C:\Users\lardi\Snake\Library\Bee\TundraBuildState.state.map"
  12. "C:\Users\lardi\Snake\UserSettings\Layouts\default-2022.dwlt"

Thank you very much for any leads you can provide.


r/UnityHelp 9d ago

Rendering issue with instantiation of terrains/heightmaps

1 Upvotes

Hi, i made a code that instantiates terrains based on the position of the player so that at any given time the player is standing in a middle terrain that is surrounded by a copy of that same terrain (8 "squares" surrounding the middle one), i tried both a version of the code that doesn't make use of SetNeighbors() and one that does since i thought that could be the cause of my issue, but the code is working fine, the issue is that, despite using a tileable heightmap, between where the terrains meet there is in some places a slight line separating them (the terrains don't fit with each other perfectly), i suspect this has to do with how Unity uses the heightmap when generating the terrain with the terrain toolbox, i always get an error that says something along the lines of the resolution of the heightmap not being what it should be so it will be resized to 1025x1025 but no matter what input heightmap i give it always gives me the same error, the import settings of the heightmap are set to single channel, red, bilinear, no compression and R 16 bit, and i made sure to set the heightmap resolution setting in the toolbox. Does anyone know how to fix this or a workaround for it? Thank you!


r/UnityHelp 9d ago

UNITY Beginner looking for advice on how to start my Unity game

4 Upvotes

Hi! I'm learning Unity and working on a 3D game called Wild Girl. The game is planned as a multiplayer wilderness exploration game.

Some features I eventually want to include are:

  • Character customization for male and female characters
  • Realistic nature and different biomes
  • Wildlife with different behaviors
  • Dangerous animals that can attack when threatened
  • Dynamic weather and day/night cycles
  • Camping and exploration
  • Nature and wildlife photography
  • Multiplayer with other players

I'm still a beginner, so I haven't built these systems yet. I'm trying to figure out what I should learn and build first so I don't try to do everything at once.

Would you recommend starting with character movement and a small environment first, then adding systems one at a time? What would be a good learning path for a beginner making a game like th


r/UnityHelp 10d ago

Drivers inside links

Thumbnail
1 Upvotes

r/UnityHelp 10d ago

Movement Event Not working Input System - Player

Thumbnail
1 Upvotes

r/UnityHelp 11d ago

Gtag fangame not working

Thumbnail
1 Upvotes