|
@@ -2270,6 +2270,10 @@ String Engine::get_license_text() const {
|
|
return ::Engine::get_singleton()->get_license_text();
|
|
return ::Engine::get_singleton()->get_license_text();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+String Engine::get_architecture_name() const {
|
|
|
|
+ return ::Engine::get_singleton()->get_architecture_name();
|
|
|
|
+}
|
|
|
|
+
|
|
bool Engine::is_in_physics_frame() const {
|
|
bool Engine::is_in_physics_frame() const {
|
|
return ::Engine::get_singleton()->is_in_physics_frame();
|
|
return ::Engine::get_singleton()->is_in_physics_frame();
|
|
}
|
|
}
|
|
@@ -2367,6 +2371,8 @@ void Engine::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("get_license_info"), &Engine::get_license_info);
|
|
ClassDB::bind_method(D_METHOD("get_license_info"), &Engine::get_license_info);
|
|
ClassDB::bind_method(D_METHOD("get_license_text"), &Engine::get_license_text);
|
|
ClassDB::bind_method(D_METHOD("get_license_text"), &Engine::get_license_text);
|
|
|
|
|
|
|
|
+ ClassDB::bind_method(D_METHOD("get_architecture_name"), &Engine::get_architecture_name);
|
|
|
|
+
|
|
ClassDB::bind_method(D_METHOD("is_in_physics_frame"), &Engine::is_in_physics_frame);
|
|
ClassDB::bind_method(D_METHOD("is_in_physics_frame"), &Engine::is_in_physics_frame);
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("has_singleton", "name"), &Engine::has_singleton);
|
|
ClassDB::bind_method(D_METHOD("has_singleton", "name"), &Engine::has_singleton);
|