From 0c2e882210f8848475f7d9547af50a202f53a110 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Mon, 9 Oct 2017 23:49:17 +0200 Subject: Adds 'exposed' field to ClassInfo This field represents if the class is exposed to the scripting API. The value is 'true' if the class was registered manually ('ClassDB::register_*class()'), otherwise it's false (registered on '_post_initialize'). - Added missing registration of classes that are meant to be exposed. --- main/main.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'main') diff --git a/main/main.cpp b/main/main.cpp index f9422cdf0b..1d7f19c372 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -256,6 +256,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph translation_server = memnew(TranslationServer); performance = memnew(Performance); + ClassDB::register_class(); globals->add_singleton(ProjectSettings::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")); -- cgit v1.2.3