0 votes

I can register methods of base class in the derived:

register_method_explicit<godot::Player>("isCarryDeadBody", &godot::GameAgent::isCarryDeadBody);

But how to do the same with properties? How to register properties of base class in the derived?

Godot version 3.2.3
in Engine by (274 points)

1 Answer

–1 vote
Best answer

Ok, I found how to do it.

I just need to pass template parameter to register_propety function:

register_property<godot::DerrivedClass>("param", &godot::BaseClass::param, paramDefaultValue);

Now, everything is working perfectly.

by (274 points)
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.