Added a simpler way to do sub-functions in both visual and gdscript with the subcall node.
With this, visual script is almost done (missing registering custom nodes from addon). All this is probably pretty broken, too and needs a lot of testing.
This commit is contained in:
parent
cfbdeeffec
commit
9865650b43
10 changed files with 241 additions and 2 deletions
|
|
@ -98,6 +98,9 @@ public:
|
|||
virtual void set_source_code(const String& p_code)=0;
|
||||
virtual Error reload(bool p_keep_state=false)=0;
|
||||
|
||||
virtual bool has_method(const StringName& p_method) const=0;
|
||||
virtual MethodInfo get_method_info(const StringName& p_method) const=0;
|
||||
|
||||
virtual bool is_tool() const=0;
|
||||
|
||||
virtual String get_node_type() const=0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue