Annoying problem that I can’t seem to fix. It’s the same reason why I quit Unity and hope to create simple games several months ago. I am trying to drag assets into my projects. But whenever I drag an asset, a folder, an object from my asset window to my actual project, it simply does not drag. Yes I have tried to run as an administrator, no help.
I simply cannot drag anything into my project.
I can get a video up if my words are not enough. It’s disappointing to know that I cant even do a simple drag, something that my 2 month old cat would probably figure out. Yet I’m over here pulling my hair.
The issue is you just don’t yet understand how scenes work. You can drag GameObjects, such as prefabs into the Hierarchy. Everything else needs to be added as components to GameObjects. If you’re trying to drag a script or folder into the scene Hierarchy as if it is a GameObject you’re not going to be successful since it doesn’t work like that.
Instead create an empty GameObject in the scene, and add all of these components to that GameObject. After you are done building out that GameObject you can later drag that GameObject from the scene Hierarchy to your Assets folder so you can instantiate it from code whenever you want.
Also note that folders can’t exist in the Hierarchy since folders are not GameObjects. If you want an organized nesting of GameObjects in the scene Hierarchy you can use child/parents.
Thank you very much for this. I am very new at this and really appreciate your response, as well as the moderator who responded as well. I feel like I have so much more to learn.