diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-09 23:25:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 23:25:33 +0200 |
commit | ca2fda629fcb1a0c7aa9945a2dd80bde993d0ac2 (patch) | |
tree | 4574d5d9de3fdb35c3d61a15fded5671dd44de92 /modules/gdnative/nativescript/godot_nativescript.cpp | |
parent | 96e17e4ea1e6b2c8c9af28043c580fd81a7d50e5 (diff) | |
parent | 44691448911f1d29d4d79dbdd5553734761e57c4 (diff) |
Merge pull request #50290 from reduz/redo-instance-bindings
Redo how instance bindings work
Diffstat (limited to 'modules/gdnative/nativescript/godot_nativescript.cpp')
-rw-r--r-- | modules/gdnative/nativescript/godot_nativescript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/nativescript/godot_nativescript.cpp b/modules/gdnative/nativescript/godot_nativescript.cpp index b10a747568..70b14836bf 100644 --- a/modules/gdnative/nativescript/godot_nativescript.cpp +++ b/modules/gdnative/nativescript/godot_nativescript.cpp @@ -332,7 +332,7 @@ void GDAPI godot_nativescript_unregister_instance_binding_data_functions(int p_i } void GDAPI *godot_nativescript_get_instance_binding_data(int p_idx, godot_object *p_object) { - return NativeScriptLanguage::get_singleton()->get_instance_binding_data(p_idx, (Object *)p_object); + return nullptr; } void GDAPI godot_nativescript_profiling_add_data(const char *p_signature, uint64_t p_time) { |