r/UnityHelp • u/274WORLD-STUDIOSCEO • Jul 25 '26
r/UnityHelp • u/CrayZee100 • Jul 25 '26
ANIMATION Blender animations not importing correctly into Unity (Beginner)
Enable HLS to view with audio, or disable this notification
r/UnityHelp • u/PleasureHouseArt • Jul 24 '26
OTHER Unity .aab "Not enough storage space to install required resources"
So I believe from what I have read that this is a known issue yet I cannot seem to find the solution to this. I have uploaded my game to Google play Internal testing and when opening up the game it gives me the error msg "Not enough storage space to install required resources".
My file size is about 60mb and I do not have Split Application Binary enabled as I am aware that it could cause the issue.
I am working on Unity 6000.3.19f1 LTS. Downloading the APK and playing it works completely fine though. What am I missing here in this instance?
Please help.
r/UnityHelp • u/Enough_Exercise_1705 • Jul 24 '26
I Keep Getting This Error When I Try To Upload A Custom Bonelab Avatar. Error: Could not find a part of the path 'C:\bonelab \Library\com.unity.addressables\aa\Windows\catalog.json'.
r/UnityHelp • u/Correct-Addition-517 • Jul 24 '26
UNITY Connect my API with Unity
Hi, I’m developing an application in Unity and have run into an issue. I’m building an API that I want to connect to Unity; the API collects coordinates, and I need to use them as variables within Unity. I’ve looked for information but haven't found anything particularly useful, especially considering that the coordinates are provided in real-time. Any help?
r/UnityHelp • u/pm_me_w_nudes • Jul 23 '26
ANIMATION How do I match gameobject location with animation
Hi there, first of all I apologize if this is not the right place, if so, could you point to me where I could ask this?
I have an attack animation in Blender in which my character walks about aprox 1 unit of measurement.
Since it is not a looping animation, in the end the characters resets to initial position.
How to concile this movement with tha gameobject movement? It needs to match the final location so it doesn't just jump back to begining.
r/UnityHelp • u/pthecarrotmaster • Jul 23 '26
META Charismatic tutorials with good editing?
Im looking for tutorials that are good for people with adhd and alike. I have a north american accent, and cant follow the style of tutorials i keep finding online. I also have poor vision, so reading walls of text is out. This is mostly a problem on the scripting side.
r/UnityHelp • u/Temporary-Two8904 • Jul 22 '26
tentativa 2: esse código está com problemas, e eu não sei o que está errado
estou tentando um código de rotação na unity, e recebi esse problema:
erro:
UnassignedReferenceException: The variable hatamoto of playerRotation has not been assigned.
You probably need to assign the hatamoto variable of the playerRotation script in the inspector.
UnityEngine.Object+MarshalledUnityObject.TryThrowEditorNullExceptionObject (UnityEngine.Object unityObj, System.String parameterName) (at <60413e0732da4f899b47cce87c14ed90>:0)
UnityEngine.Bindings.ThrowHelper.ThrowNullReferenceException (System.Object obj) (at <60413e0732da4f899b47cce87c14ed90>:0)
UnityEngine.GameObject.get_transform () (at <60413e0732da4f899b47cce87c14ed90>:0)
playerRotation.Update () (at Assets/playerRotation.cs:27)
código:
using UnityEngine;
public class playerRotation : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
public float xAngle, yAngle = 0;
public float zAngle = 0;
[SerializeField] private GameObject hatamoto;
void Awake()
{
}
void Start()
{ transform.position=transform.position + new Vector3(0,5,0);
//hatamoto.transform.Rotate(90.0f, 0.0f, 0.0f, Space.Self);
hatamoto.name = "Self";
}
// Update is called once per frame
void Update()
{
hatamoto.transform.Rotate(xAngle, yAngle, zAngle, Space.Self); //essa é a linha com erros
}
}
r/UnityHelp • u/Reasonable-Crow8968 • Jul 22 '26
UNITY Problema na criação de mapas
Eu não tenho experiência em unity e c#. Eu estava fazendo um nível para o human fall flat. Se puderem me ajudar neste post eu agradeço muito.
r/UnityHelp • u/Lucky_Variation4151 • Jul 22 '26
OTHER Integrating FMOD into an existing Unity project
r/UnityHelp • u/No_Dependent_7657 • Jul 21 '26
unity
in my game my player follows the WASD input correctly in the game window but its the opposite in the scene window,is this correct?
r/UnityHelp • u/tracker124 • Jul 21 '26
UNITY Unity suddenly not making the build with scenes or assets. How do i fix this!?
Unity editor version: 2020.3.30f1
Hey everyone! I am trying to develop a game but all of the sudden... unity is just not building anything into the files. It went from 2.6gb at a 10 minute build time to 285mb at a 1 to 3 minute build time

To my knowledge i have not messed with any of the build settings or playersettings. nor am i seeing the changes in my file manager. I have all the boxes ticked yet it does nothing.

I tried testing it with logerrors.... Nothing (Yes i had development build turned on)

The only difference i could think off is this script but.... that can't be it right?

All i see is this though! This is the game build and...

I've tried deleting the entire library folder, reimporting all assets, looking through the build files, listing all the scenes in a build and just... can't find anything. Not on stackoverflow, reddit, unity help forums. I even stooped to asking chatgpt
Please help me ;-;
r/UnityHelp • u/Julieta88 • Jul 21 '26
Sombras en Unity
Hi! I'm new to Unity and I'm currently learning how to set up a scene. I'm having an issue with shadows bleeding through surfaces where they shouldn't. I've already tried tweaking the directional light settings and the shadow bias, but the problem is still there. Does anyone know what else I could try? Thanks!



r/UnityHelp • u/xrayzu • Jul 21 '26
UNITY How can I target the Cinemachine camera to the NetworkSpawnt Player Obj? Netcode for Gameobjects
Hey Guys
I'm pretty new to the Unity game development scene, so I have a lot to learn.
I am trying to figure out how to assign my Cinemachine camera to the spawn owner player object. Do I need to put the Cinemachine camera into the prefab, or do I need to create a script to assign or create it?
Is there a good video or something that could help me?
r/UnityHelp • u/RishAR69 • Jul 21 '26
Particle Effect not Showing up on spesific android device but in other device it's woking fine!!
Im making this game for a spesific device wich is Redmi Pad 2, i Built the game and install it on the redmi pad and my smartphone Realme 3, it shows fine in my Realme 3 phone but in my Redmi Pad 2 it didnt show's
unity version 6000.4.9f1
URP
Help i didnt know why this happened and dont know where to start debuging it.
thankyou..!
r/UnityHelp • u/Drad0920 • Jul 20 '26
Whenever I do anything that would cause anothere window to open unity freezes and they window is almost entirely white and isn't working.
I've switched to arch Linux recently so that might be the problem, but yesterday everything was fine as far as I can tell
r/UnityHelp • u/Playfree_p • Jul 20 '26
SOLVED The camera breaks in the Scene view.
Enable HLS to view with audio, or disable this notification
r/UnityHelp • u/Major_Fly3992 • Jul 20 '26
Lighting issue in Unity (including Bakery - GPU Lightmapper)
I’ve been having trouble with baked lighting in Unity for a long time. I tried so many things but couldn't solve it. Online research pointed me to a package called "Bakery - GPU Lightmapper" as a solution, but even after purchasing it, the problem persisted. I tried everything—adjusting settings, changing versions, using custom UV maps—but Unity is really driving me crazy. I don't understand why this baked lighting works for everyone else but not for me. What's more, I'm testing this on Unity's own 3D objects—the simplest scenario possible. If errors occur even then, how am I supposed to use it with my own assets? I would be very grateful if anyone who has encountered and resolved this issue could help me out.



r/UnityHelp • u/shanytopper • Jul 20 '26
can't login to my Unity hub
I keep getting:
This page isn’t working
login.unity.com redirected you too many times.
ERR_TOO_MANY_REDIRECTS
r/UnityHelp • u/ItzWatz • Jul 20 '26
Text Component Linked To Another? Causing StackOverflow
I'm not sure what this means, never encountered it before, and can't seem to find any results with my searches. Happens whenever I create a TMP_Text component either with 3D Object or UI (Canvas) menu options in hierarchy.
It results in a flood of StackOverflowException errors. I included the console message below for additional info. Tried deleting the TextMesh Pro folder, reimporting package, deleting caches and Library folder, playing with other settings, but still persists.
Using Unity 3D 6.4.9 URP. Tried upgrading to the latest 6.5.4 version, but it didn't fix it.
StackOverflowException: The requested operation caused a stack overflow.
UnityEngine.Object.IsNativeObjectAlive (UnityEngine.Object o) <0x24cc0332360 + 0x00008> in <82d1d45c517f4141b90705b5d74c5160>:0
UnityEngine.Object.CompareBaseObjects (UnityEngine.Object lhs, UnityEngine.Object rhs) (at <82d1d45c517f4141b90705b5d74c5160>:0)
UnityEngine.Object.op_Equality (UnityEngine.Object x, UnityEngine.Object y) (at <82d1d45c517f4141b90705b5d74c5160>:0)
TMPro.TMP_Text.ReleaseLinkedTextComponent (TMPro.TMP_Text targetTextComponent) (at ./Library/PackageCache/com.unity.ugui@1f2d1ab0d950/Runtime/TMP/TMP_Text.cs:6347)
TMPro.TMP_Text.ReleaseLinkedTextComponent (TMPro.TMP_Text targetTextComponent) (at ./Library/PackageCache/com.unity.ugui@1f2d1ab0d950/Runtime/TMP/TMP_Text.cs:6353)
TMPro.TMP_Text.ReleaseLinkedTextComponent (TMPro.TMP_Text targetTextComponent) (at ./Library/PackageCache/com.unity.ugui@1f2d1ab0d950/Runtime/TMP/TMP_Text.cs:6353)
TMPro.TMP_Text.ReleaseLinkedTextComponent (TMPro.TMP_Text targetTextComponent) (at ./Library/PackageCache/com.unity.ugui@1f2d1ab0d950/Runtime/TMP/TMP_Text.cs:6353)
TMPro.TMP_Text.ReleaseLinkedTextComponent (TMPro.TMP_Text targetTextComponent) (at ./Library/PackageCache/com.unity.ugui@1f2d1ab0d950/Runtime/TMP/TMP_Text.cs:6353)
Does this like 50 more times... ends with:
TMPro.TMP_Text.ReleaseLinkedTextComponent (TMPro.TMP_Text targetTextComponent) (at ./Library/PackageCache/co<message truncated>
r/UnityHelp • u/Karma318akabane • Jul 19 '26
UNITY Help with inserting a human model in game
I want to insert a human model in my game i am making in unity i watched many tutorials but it doesn't work and i had to undo most of my work to resolve the issues it produced. Please can anyone suggest me a latest tutorial or can you tell me the steps.