0 votes

Hello again! I was wondering if it were possible to move a instanced scene to the child of another scene. I get the error that the child already has a parent. The reason I want to do this is so that the player can "carry" an object which has specific variables set. if that is not the proper way to implement that I would be happy to hear another way. Thanks.

in Engine by (24 points)

1 Answer

+1 vote
Best answer

I hacked my way through with something like this:

if node.get_parent():
    node.get_parent().remove_child()
add_child(node)

If I remember correct that worked, it sure is uggly...
On mobile and cant seem to make it pretty and underscores arr removed..

by (86 points)
edited by

edited codes looks better. :)

Ty. I suck with my mobile.

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.