#When trying to add a footstep sound loop I get this error, what does it mean?

1 messages · Page 1 of 1 (latest)

charred kayak
#

Please help me figure out what is going on here im stuck.

glass sonnet
#

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.

charred kayak
#

So how would I do that?

glass sonnet
#

Either by changing the type you expect, or by ensuring you pass the right object.