Parametric design in MoI?

 From:  Max Smirnov (SMIRNOV)
7713.572 
Hi guys!

Today I added autoload functions to this project.
index.htm - almost completely rewritten
now it uses loadScripts function to load all .js scripts
all functions from the old index.htm has been moved to core/init.js

Syntax: loadScripts(subdirectory, scriptlist)
Subdirectory is a string parameter which points to subdirectory where scripts are stored.
As scriptlist you can use a comma separated string or a string array. In this list you can specify a names of the scripts which you want to load.
You can use a mask instead of full name. Each script will be loaded only once.
Example:
we have the following scripts in the nodes subdirectory:
basic.js
points.js
curves.js
solids.js
construct.js
transform.js
objects.js
interface.js
myscript1.js
myscript2.js
... etc

if we call loadScripts('nodes', 'interface, myscript1, c*, *s, *'); the scrips will be loaded with the following order:
(interface)
interface.js

(myscript1)
myscript1.js

(c*)
construct.js
curves.js

(*s)
objects.js
points.js
solids.js

(*)
all the rest scripts

backup the old index.htm file and unzip this archive to existing nodeeditor directory. There are only two files in the archive (index.htm and core/init.js)
Waiting for a bugreports. :)

P.S. I'll read all questions you asked me above and write an answers today or tomorrow.

EDITED: 7 Mar 2022 by SMIRNOV