Hello. Im kinda new to unity an have a problem.I want to make an object to be disabled in the start of the scene, but when i collect an item, i want it to be activated.I already tried the rendere.disabled method, but it only makes the object invisible, and i want it to be completely inactive. anyone can help me in this one? Cheers.
Well what you can do is create a prefab of the object you want and not put it into your scene. Then, once you collect the item you need just use Instantiate to create the object.
Is that what you are trying to say? If not let me know...
Yes, you will need to set:
Instantiate (prefab, position(a vector3) rotation(a quaternion)
example
Instantiate(PrefabName, Vector3(5,5,0), Quaternion.identity);
more info here