1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

re-added MultiScript

The very first Godot version (when it was open sourced) had "MultiScript" which lets you use multiple scripts on one object.
With the addition of mulitple new scripting languages (VisualScript, soon C# and GDNative) it can be of use to combine scripts rather than delegating (with huge maintainance cost) or creating child nodes
which could impact performance.

I used the code from 0b806ee as the base and made it work with the current master.
This commit is contained in:
Karroffel
2017-04-24 00:29:17 +02:00
parent b474646de0
commit 885239fb09
7 changed files with 1049 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
def can_build(platform):
return True
def configure(env):
pass