diff options
| author | Thomas Herzog | 2017-11-14 15:34:07 +0100 |
|---|---|---|
| committer | GitHub | 2017-11-14 15:34:07 +0100 |
| commit | bd2b1a62d9d6f97ebfa7457ab3e84ae839531bdb (patch) | |
| tree | 2594fc77cd508c9b570c97b9f47e7ed8a45781dd /modules/gdnative/nativescript/nativescript.h | |
| parent | f83b73be132d0e75272fd47899bc2d24d1285a39 (diff) | |
| parent | d82942e1c5716961bf921de7795becfa0cd05807 (diff) | |
| download | godot-bd2b1a62d9d6f97ebfa7457ab3e84ae839531bdb.tar.gz godot-bd2b1a62d9d6f97ebfa7457ab3e84ae839531bdb.tar.zst godot-bd2b1a62d9d6f97ebfa7457ab3e84ae839531bdb.zip | |
Merge pull request #12586 from karroffel/gdnative-gdnlibrary-changes
[GDNative] use feature tags, added load once option
Diffstat (limited to '')
| -rw-r--r-- | modules/gdnative/nativescript/nativescript.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/gdnative/nativescript/nativescript.h b/modules/gdnative/nativescript/nativescript.h index e8fc9e688..f0f14e2f3 100644 --- a/modules/gdnative/nativescript/nativescript.h +++ b/modules/gdnative/nativescript/nativescript.h @@ -229,15 +229,15 @@ public: Map<String, Set<NativeScript *> > library_script_users; const StringName _init_call_type = "nativescript_init"; - const StringName _init_call_name = "godot_nativescript_init"; + const StringName _init_call_name = "nativescript_init"; const StringName _noarg_call_type = "nativescript_no_arg"; - const StringName _frame_call_name = "godot_nativescript_frame"; + const StringName _frame_call_name = "nativescript_frame"; #ifndef NO_THREADS - const StringName _thread_enter_call_name = "godot_nativescript_thread_enter"; - const StringName _thread_exit_call_name = "godot_nativescript_thread_exit"; + const StringName _thread_enter_call_name = "nativescript_thread_enter"; + const StringName _thread_exit_call_name = "nativescript_thread_exit"; #endif NativeScriptLanguage(); |
