mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 10:56:50 +01:00
Added back method removed by accident.
This commit is contained in:
parent
a8fae729d2
commit
8e6b320144
@ -242,13 +242,17 @@ protected:
|
|||||||
void _add_child_nocheck(Node *p_child, const StringName &p_name);
|
void _add_child_nocheck(Node *p_child, const StringName &p_name);
|
||||||
void _set_owner_nocheck(Node *p_owner);
|
void _set_owner_nocheck(Node *p_owner);
|
||||||
void _set_name_nocheck(const StringName &p_name);
|
void _set_name_nocheck(const StringName &p_name);
|
||||||
|
|
||||||
void set_physics_interpolation_mode(PhysicsInterpolationMode p_mode);
|
void set_physics_interpolation_mode(PhysicsInterpolationMode p_mode);
|
||||||
PhysicsInterpolationMode get_physics_interpolation_mode() const {
|
PhysicsInterpolationMode get_physics_interpolation_mode() const {
|
||||||
return data.physics_interpolation_mode;
|
return data.physics_interpolation_mode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _set_physics_interpolated_client_side(bool p_enable);
|
||||||
bool _is_physics_interpolated_client_side() const {
|
bool _is_physics_interpolated_client_side() const {
|
||||||
return data.physics_interpolated_client_side;
|
return data.physics_interpolated_client_side;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _set_use_identity_transform(bool p_enable);
|
void _set_use_identity_transform(bool p_enable);
|
||||||
bool _is_using_identity_transform() const {
|
bool _is_using_identity_transform() const {
|
||||||
return data.use_identity_transform;
|
return data.use_identity_transform;
|
||||||
|
Loading…
Reference in New Issue
Block a user