VisualScript can now execute visual scripts, but there is no debugger or profiler yet.

This commit is contained in:
Juan Linietsky
2016-08-05 22:46:45 -03:00
parent 6d5d23fa8d
commit 259418f827
27 changed files with 3333 additions and 221 deletions

View File

@ -1213,7 +1213,9 @@ def detect_modules():
register_cpp=""
unregister_cpp=""
for x in glob.glob("modules/*"):
files = glob.glob("modules/*")
files.sort() #so register_module_types does not change that often, and also plugins are registered in alphabetic order
for x in files:
if (not os.path.isdir(x)):
continue
x=x.replace("modules/","") # rest of world