File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ bool JavaScript::can_instantiate() const {
23
23
#endif
24
24
}
25
25
26
+ StringName JavaScript::get_global_name () const {
27
+ return StringName ();
28
+ }
29
+
26
30
StringName JavaScript::get_instance_base_type () const {
27
31
static StringName empty;
28
32
ERR_FAIL_NULL_V (javascript_class, empty);
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ class JavaScript : public Script {
43
43
virtual Ref<Script> get_base_script () const override { return nullptr ; }
44
44
virtual bool inherits_script (const Ref<Script> &p_script) const override { return false ; }
45
45
46
+ StringName get_global_name () const override ;
46
47
virtual StringName get_instance_base_type () const override ;
47
48
virtual ScriptInstance *instance_create (Object *p_this) override ;
48
49
virtual PlaceHolderScriptInstance *placeholder_instance_create (Object *p_this) override ;
You can’t perform that action at this time.
0 commit comments