#When trying to add a footstep sound loop I get this error, what does it mean?
1 messages · Page 1 of 1 (latest)
You are trying to set the var parent to a Node3D (because that is the output of get_parent(), but you declared the player to be a CharacterBody3D.
So it complains because you cannot put a Node3D into a CharacterBody3D. They need to be the same.
So how would I do that?
Either by changing the type you expect, or by ensuring you pass the right object.