I want to set my swords position to my characters hand. How can i do this? Please help.
And this is my first question. I’m amateur on this.
I want to set my swords position to my characters hand. How can i do this? Please help.
And this is my first question. I’m amateur on this.
Hmmm, this is a really simple question and maybe you should watch some more tutorials, but here you go anyways
Will move objectA to objectB (C#)
public Transform objectA;
public Transform objectB;
void Start() {
//Make ObjectA's position match objectB
objectA.position = objectB.position;
//Now parent the object so it is always there
objectA.parent = objectB;
}