|
@@ -1477,6 +1477,14 @@ int Engine::get_physics_ticks_per_second() const {
|
|
|
return ::Engine::get_singleton()->get_physics_ticks_per_second();
|
|
|
}
|
|
|
|
|
|
+void Engine::set_max_physics_steps_per_frame(int p_max_physics_steps) {
|
|
|
+ ::Engine::get_singleton()->set_max_physics_steps_per_frame(p_max_physics_steps);
|
|
|
+}
|
|
|
+
|
|
|
+int Engine::get_max_physics_steps_per_frame() const {
|
|
|
+ return ::Engine::get_singleton()->get_max_physics_steps_per_frame();
|
|
|
+}
|
|
|
+
|
|
|
void Engine::set_physics_jitter_fix(double p_threshold) {
|
|
|
::Engine::get_singleton()->set_physics_jitter_fix(p_threshold);
|
|
|
}
|
|
@@ -1628,6 +1636,8 @@ bool Engine::is_printing_error_messages() const {
|
|
|
void Engine::_bind_methods() {
|
|
|
ClassDB::bind_method(D_METHOD("set_physics_ticks_per_second", "physics_ticks_per_second"), &Engine::set_physics_ticks_per_second);
|
|
|
ClassDB::bind_method(D_METHOD("get_physics_ticks_per_second"), &Engine::get_physics_ticks_per_second);
|
|
|
+ ClassDB::bind_method(D_METHOD("set_max_physics_steps_per_frame", "max_physics_steps"), &Engine::set_max_physics_steps_per_frame);
|
|
|
+ ClassDB::bind_method(D_METHOD("get_max_physics_steps_per_frame"), &Engine::get_max_physics_steps_per_frame);
|
|
|
ClassDB::bind_method(D_METHOD("set_physics_jitter_fix", "physics_jitter_fix"), &Engine::set_physics_jitter_fix);
|
|
|
ClassDB::bind_method(D_METHOD("get_physics_jitter_fix"), &Engine::get_physics_jitter_fix);
|
|
|
ClassDB::bind_method(D_METHOD("get_physics_interpolation_fraction"), &Engine::get_physics_interpolation_fraction);
|
|
@@ -1675,6 +1685,7 @@ void Engine::_bind_methods() {
|
|
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "print_error_messages"), "set_print_error_messages", "is_printing_error_messages");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "physics_ticks_per_second"), "set_physics_ticks_per_second", "get_physics_ticks_per_second");
|
|
|
+ ADD_PROPERTY(PropertyInfo(Variant::INT, "max_physics_steps_per_frame"), "set_max_physics_steps_per_frame", "get_max_physics_steps_per_frame");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "max_fps"), "set_max_fps", "get_max_fps");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "time_scale"), "set_time_scale", "get_time_scale");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "physics_jitter_fix"), "set_physics_jitter_fix", "get_physics_jitter_fix");
|