mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
DocData: Skip unexposed classes
Properly expose classes that we actually want accessible.
(cherry picked from commit 0ef8bcac4d)
This commit is contained in:
parent
982dee67f0
commit
253fc093b8
14 changed files with 11 additions and 135 deletions
|
|
@ -1131,9 +1131,11 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||
ProjectSettings::get_singleton()->set_custom_property_info("debug/settings/fps/force_fps", PropertyInfo(Variant::INT, "debug/settings/fps/force_fps", PROPERTY_HINT_RANGE, "0,120,1,or_greater"));
|
||||
|
||||
GLOBAL_DEF("debug/settings/stdout/print_fps", false);
|
||||
GLOBAL_DEF("debug/settings/stdout/verbose_stdout", false);
|
||||
|
||||
if (!OS::get_singleton()->_verbose_stdout) //overridden
|
||||
OS::get_singleton()->_verbose_stdout = GLOBAL_DEF("debug/settings/stdout/verbose_stdout", false);
|
||||
if (!OS::get_singleton()->_verbose_stdout) { // Not manually overridden.
|
||||
OS::get_singleton()->_verbose_stdout = GLOBAL_GET("debug/settings/stdout/verbose_stdout");
|
||||
}
|
||||
|
||||
if (frame_delay == 0) {
|
||||
frame_delay = GLOBAL_DEF("application/run/frame_delay_msec", 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue