summaryrefslogtreecommitdiffstats
path: root/modules/gdnative/gdnative.cpp
diff options
context:
space:
mode:
authorEmmanuel Leblond <emmanuel.leblond@gmail.com>2017-10-02 13:25:53 +0200
committerEmmanuel Leblond <emmanuel.leblond@gmail.com>2017-10-02 13:25:53 +0200
commitc11c951871b50edfef5ebd7d034e2ea0975b4b9a (patch)
tree5720399db437bc4ccf8c9b23f6cdfd42febeafba /modules/gdnative/gdnative.cpp
parent3d75b210b5c6468aac3bcb95124075f4e5eb7df8 (diff)
downloadredot-engine-c11c951871b50edfef5ebd7d034e2ea0975b4b9a.tar.gz
[GDnative] Add binding to GDNativeLibrary::get_active_library_path
Diffstat (limited to 'modules/gdnative/gdnative.cpp')
-rw-r--r--modules/gdnative/gdnative.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdnative/gdnative.cpp b/modules/gdnative/gdnative.cpp
index 11856e4ffb..4882c1014b 100644
--- a/modules/gdnative/gdnative.cpp
+++ b/modules/gdnative/gdnative.cpp
@@ -110,6 +110,7 @@ GDNativeLibrary::~GDNativeLibrary() {
void GDNativeLibrary::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_library_path", "platform", "path"), &GDNativeLibrary::set_library_path);
ClassDB::bind_method(D_METHOD("get_library_path", "platform"), &GDNativeLibrary::get_library_path);
+ ClassDB::bind_method(D_METHOD("get_active_library_path"), &GDNativeLibrary::get_active_library_path);
ClassDB::bind_method(D_METHOD("is_singleton_gdnative"), &GDNativeLibrary::is_singleton_gdnative);
ClassDB::bind_method(D_METHOD("set_singleton_gdnative", "singleton"), &GDNativeLibrary::set_singleton_gdnative);