How do I get the Node object from a Variant in gdnative C++

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By arlecchino

Hello,

as far as I know it is not possible to give a RigidBody2D as parameter in gdscript to a gdnative method.
So the gdnative method has a Variant argument.

But I’d like to access the argument as a RigidBody2D in the native code.
Casting is not possible.

How do you do this?
Or is it possible to travel the tree from root like in gdscript?

Thanks for your tips.

:bust_in_silhouette: Reply From: mneg

In case someone is still interested: the Variant class can cast to Node* which in turn can be cast to RigidBody2D*.