summaryrefslogtreecommitdiffstats
path: root/modules/nativescript/nativescript.cpp
diff options
context:
space:
mode:
authorKarroffel <therzog@mail.de>2017-07-25 00:22:17 +0200
committerKarroffel <therzog@mail.de>2017-07-25 00:26:37 +0200
commit3f1e75e89c0c3e008569208b8d397c59c767506a (patch)
treef775d5067a90a0c0daad40baa2eb3261d2c8f30d /modules/nativescript/nativescript.cpp
parent5e1abaf348cf301d22752062625af18ba9f0f397 (diff)
downloadredot-engine-3f1e75e89c0c3e008569208b8d397c59c767506a.tar.gz
[NativeScript] bound `new` to ClassDB
Diffstat (limited to 'modules/nativescript/nativescript.cpp')
-rw-r--r--modules/nativescript/nativescript.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/nativescript/nativescript.cpp b/modules/nativescript/nativescript.cpp
index 952e8e349c..493f21d75e 100644
--- a/modules/nativescript/nativescript.cpp
+++ b/modules/nativescript/nativescript.cpp
@@ -59,6 +59,8 @@ void NativeScript::_bind_methods() {
ADD_PROPERTYNZ(PropertyInfo(Variant::STRING, "class_name"), "set_class_name", "get_class_name");
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "library", PROPERTY_HINT_RESOURCE_TYPE, "GDNativeLibrary"), "set_library", "get_library");
+
+ ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "new", &NativeScript::_new, MethodInfo(Variant::OBJECT, "new"));
}
#define NSL NativeScriptLanguage::get_singleton()