What I’m trying to do is to sort of parent one object to another, but have the child object ignore the parents rotation.
I guess like an object label, but out in the world instead of in the screen.
I’ve tried going about it from several different ways, but so far none of them have worked out.
I’m new to scripting, so I’m probably missing something silly.
Here’s the latest thing I’ve tried. It doesn’t seem to do anything at all.
var target: Transform;
private var linkup: Vector3 = target.position;
function update(){
transform.position = linkup;
}
I don’t see where the problem with the script is, so maybe someone could point it out, or tell me of a better way to go about it.