What I need to do though, is to update the position of these sub-models so it always stays the same as the spawning models. If there was only once of each, I could do :
CurrentModel.Position.X = OriginalModel1.Position.X;
But since I have many of these clones spawned, there is no specific way to refer to them.
Or is there? I'd be really happy if I could use something like Parent.Position.X.
The last programming language I used did it that way, so I'm sort of used to it.
