You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Don't try to initialize empty NativeLibrary
This commit is contained in:
@@ -119,7 +119,10 @@ String NativeScript::get_class_name() const {
|
|||||||
|
|
||||||
void NativeScript::set_library(Ref<GDNativeLibrary> p_library) {
|
void NativeScript::set_library(Ref<GDNativeLibrary> p_library) {
|
||||||
if (!library.is_null()) {
|
if (!library.is_null()) {
|
||||||
WARN_PRINT("library on NativeScript already set. Do nothing.");
|
WARN_PRINT("Library in NativeScript already set. Do nothing.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (p_library.is_null()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
library = p_library;
|
library = p_library;
|
||||||
|
|||||||
Reference in New Issue
Block a user