Added ability to create custom nodes from script.

This commit is contained in:
Juan Linietsky 2016-08-07 21:22:14 -03:00
parent 0b8f0670c5
commit cfbdeeffec
5 changed files with 320 additions and 0 deletions

View file

@ -2548,6 +2548,9 @@ void VisualScriptLanguage::get_registered_node_names(List<String> *r_names) {
VisualScriptLanguage::VisualScriptLanguage() {
notification="_notification";
_get_output_port_unsequenced="_get_output_port_unsequenced";
_step="_step";
singleton=this;
#ifndef NO_THREADS
lock = Mutex::create();