loopier / animatron-godot3

Yet another implementation of Animatron, but in Godot
GNU General Public License v3.0
17 stars 1 forks source link

Reference to older project solutions #5

Open loopier opened 3 years ago

loopier commented 3 years ago
totalgee commented 3 years ago

I notice your OSC "script" file is essentially CSV (comma-separate values), such as you can easily create/save from Excel, LibreOffice, etc. For example, here's another one, created in LibreOffice Calc:

/clip/new,mamma1,mamma,,
/clip/new,mamma2,mamma,,
/clip/moveto,mamma2,0.25,0.5,
/clip/color,mamma2,1,0.1,0
/clip/scale,mamma2,0.5,,
/wait,2,,,
/say,mamma1,"Hi, everyone!",,

(note that any trailing empty commas/arguments should be skipped)

In any case, we should definitely not require "quotes" around string arguments, unless they're needed (e.g. if the argument contains a comma or more complex things).