summaryrefslogtreecommitdiffstats
path: root/modules/nativescript/nativescript.cpp
diff options
context:
space:
mode:
authorThomas Herzog <thomas.herzog@mail.com>2017-07-24 20:09:26 +0200
committerGitHub <noreply@github.com>2017-07-24 20:09:26 +0200
commitbe578a1b3eab2a26c3d10d8cdb685482d9d37042 (patch)
tree413c331fbc4f1af2a58cd38ce1b9da58484646e9 /modules/nativescript/nativescript.cpp
parent008b20bd8f19ca109f707ad1e566c86c2eccfb45 (diff)
parent75b66146ae977d634205b6a93ac8f3b0da0f4686 (diff)
downloadredot-engine-be578a1b3eab2a26c3d10d8cdb685482d9d37042.tar.gz
Merge pull request #9817 from RameshRavone/patch-2
GDNative register_property
Diffstat (limited to 'modules/nativescript/nativescript.cpp')
-rw-r--r--modules/nativescript/nativescript.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/nativescript/nativescript.cpp b/modules/nativescript/nativescript.cpp
index f993890a62..952e8e349c 100644
--- a/modules/nativescript/nativescript.cpp
+++ b/modules/nativescript/nativescript.cpp
@@ -532,6 +532,7 @@ bool NativeScriptInstance::get(const StringName &p_name, Variant &r_ret) const {
}
void NativeScriptInstance::get_property_list(List<PropertyInfo> *p_properties) const {
+ script->get_script_property_list(p_properties);
NativeScriptDesc *script_data = GET_SCRIPT_DESC();