|
@@ -411,7 +411,10 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|
|
ClassDB::register_class<Performance>();
|
|
|
engine->add_singleton(Engine::Singleton("Performance", performance));
|
|
|
|
|
|
- GLOBAL_DEF("debug/settings/crash_handler/message", String("Please include this when reporting the bug on https://github.com/godotengine/godot/issues"));
|
|
|
+ GLOBAL_DEF("debug/settings/crash_handler/message",
|
|
|
+ String("Please include this when reporting the bug to the project developer."));
|
|
|
+ GLOBAL_DEF("debug/settings/crash_handler/message.editor",
|
|
|
+ String("Please include this when reporting the bug on: https://github.com/godotengine/godot/issues"));
|
|
|
|
|
|
MAIN_PRINT("Main: Parse CMDLine");
|
|
|
|
|
@@ -1249,7 +1252,11 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|
|
}
|
|
|
|
|
|
GLOBAL_DEF("display/window/ios/hide_home_indicator", true);
|
|
|
- GLOBAL_DEF("input_devices/pointing/ios/touch_delay", 0.150);
|
|
|
+ GLOBAL_DEF("input_devices/pointing/ios/touch_delay", 0.15);
|
|
|
+ ProjectSettings::get_singleton()->set_custom_property_info("input_devices/pointing/ios/touch_delay",
|
|
|
+ PropertyInfo(Variant::REAL,
|
|
|
+ "input_devices/pointing/ios/touch_delay",
|
|
|
+ PROPERTY_HINT_RANGE, "0,1,0.001"));
|
|
|
|
|
|
Engine::get_singleton()->set_frame_delay(frame_delay);
|
|
|
|