mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Added ability to create custom nodes from script.
This commit is contained in:
parent
0b8f0670c5
commit
cfbdeeffec
5 changed files with 320 additions and 0 deletions
|
@ -22,6 +22,8 @@ friend class VisualScript;
|
|||
Array _get_default_input_values() const;
|
||||
protected:
|
||||
|
||||
virtual bool _use_builtin_script() const { return false; }
|
||||
|
||||
void _notification(int p_what);
|
||||
void ports_changed_notify();
|
||||
static void _bind_methods();
|
||||
|
@ -466,6 +468,8 @@ class VisualScriptLanguage : public ScriptLanguage {
|
|||
|
||||
public:
|
||||
StringName notification;
|
||||
StringName _get_output_port_unsequenced;
|
||||
StringName _step;
|
||||
|
||||
static VisualScriptLanguage* singleton;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue