Parenting Player to moving objects - is that always a bad idea?

Hello folks,

I tried parenting the player to a fixed point on a moving object that follows a spline and found that the player deforms and stretches all over the place.

Like so.

Is that to be expected / a common consequence?

Thanks!

Movement has nothing to do (directly) with the scale.

Do what you’re doing to see the undesired effect, then hit PAUSE in the editor and find out what’s actually going on.

It sounds like something does not have identity scaling (1,1,1) in your hierarchy. ALWAYS maintain identity scaling until the very last leaf item in the hierarchy, if possible.

Also, a moving object isn’t really moving in the same way like if you tried to jump on a moving train and hurt yourself. It’s just a block of data that WILL be moved next frame by the physic system.

1 Like

@Kurt-Dekker you’re spot on. It was a scale issue. The parent object wasn’t 1,1,1

1 Like