├── .gitignore ├── Animation.gd ├── AudioInputPlayer.gd ├── Config.gd ├── CustomCommands.gd ├── Helper.gd ├── LICENSE ├── Letters.gd ├── Logger.gd ├── Main.gd ├── Main.tscn ├── MetaNode.gd ├── MetaNode.tscn ├── Midi.gd ├── OscInterface.gd ├── OscSender.gd ├── OscTextEdit.gd ├── PostTextEdit.gd ├── README.md ├── RoutineNode.gd ├── RoutineNode.tscn ├── SpeechBubble.gd ├── SpeechBubble.tscn ├── actions ├── Action.gd ├── oscillate.gd ├── wander.gd └── wrap.gd ├── addons └── gdosc │ ├── bin │ ├── osx │ │ └── libgdosc.dylib │ ├── win64 │ │ ├── libgdosc.dll │ │ ├── libgdosc.exp │ │ └── libgdosc.lib │ └── x11 │ │ └── libgdosc.so │ ├── gdosc.gdnlib │ ├── gdoscmsg.gdns │ ├── gdoscreceiver.gdns │ ├── gdoscsender.gdns │ ├── gdscript_oscreceiver_template.gd │ └── gdscript_oscsender_template.gd ├── animations └── .gdignore ├── commands ├── .gdignore ├── init.osc ├── init_example.osc └── tutorial-cmds.osc ├── config ├── .gdignore └── config_example.osc ├── default_env.tres ├── docs ├── .gdignore ├── KeyboardShortcuts.md.html ├── Reference.md.html ├── help-actor-free.osc ├── help-create.osc ├── help │ ├── help-action.osc │ ├── help-alpha.osc │ ├── help-angle.osc │ ├── help-app-remote.osc │ ├── help-assets-path.osc │ ├── help-at.osc │ ├── help-behind.osc │ ├── help-bg.osc │ ├── help-choose-arg.osc │ ├── help-choose.osc │ ├── help-color-b.osc │ ├── help-color-g.osc │ ├── help-color-r.osc │ ├── help-color.osc │ ├── help-create-group.osc │ ├── help-create.osc │ ├── help-createordestroy.osc │ ├── help-debug.osc │ ├── help-def.osc │ ├── help-deselect.osc │ ├── help-editor-append.osc │ ├── help-editor-clear.osc │ ├── help-editor-font-decrease.osc │ ├── help-editor-font-increase.osc │ ├── help-editor-font-size.osc │ ├── help-editor-open.osc │ ├── help-editor-save.osc │ ├── help-error-reply.osc │ ├── help-fade.osc │ ├── help-fliph.osc │ ├── help-flipv.osc │ ├── help-frame-next.osc │ ├── help-frame-prev.osc │ ├── help-frame.osc │ ├── help-free.osc │ ├── help-front.osc │ ├── help-group.osc │ ├── help-help.osc │ ├── help-iter.osc │ ├── help-letter-scale.osc │ ├── help-letter-spacing.osc │ ├── help-letter.osc │ ├── help-list-actors-reply.osc │ ├── help-list-anims-reply.osc │ ├── help-list-anims.osc │ ├── help-list-assets-reply.osc │ ├── help-list-assets.osc │ ├── help-list-children.osc │ ├── help-list-commands.osc │ ├── help-list-midi.osc │ ├── help-list-sequence.osc │ ├── help-list-states.osc │ ├── help-list.osc │ ├── help-load-alphabet.osc │ ├── help-load-config.osc │ ├── help-load-defs.osc │ ├── help-load.osc │ ├── help-loop.osc │ ├── help-midi-debug.osc │ ├── help-midi-free.osc │ ├── help-midi.osc │ ├── help-move-x.osc │ ├── help-move-y.osc │ ├── help-move.osc │ ├── help-oneshot.osc │ ├── help-onfinish-free.osc │ ├── help-onfinish.osc │ ├── help-onframe-free.osc │ ├── help-onframe.osc │ ├── help-osc-remote.osc │ ├── help-osc-send.osc │ ├── help-parent-free.osc │ ├── help-parent.osc │ ├── help-pivot.osc │ ├── help-play-rand.osc │ ├── help-play-range.osc │ ├── help-play.osc │ ├── help-position-x.osc │ ├── help-position-y.osc │ ├── help-position.osc │ ├── help-post-font-decrease.osc │ ├── help-post-font-increase.osc │ ├── help-post-font-size.osc │ ├── help-post.osc │ ├── help-rand.osc │ ├── help-rotate.osc │ ├── help-routine-free-all.osc │ ├── help-routine-free.osc │ ├── help-routine-start.osc │ ├── help-routine-stop.osc │ ├── help-routine.osc │ ├── help-say.osc │ ├── help-scale-x.osc │ ├── help-scale-xy.osc │ ├── help-scale-y.osc │ ├── help-scale.osc │ ├── help-select.osc │ ├── help-selected.osc │ ├── help-size-x.osc │ ├── help-size-xy.osc │ ├── help-size-y.osc │ ├── help-size.osc │ ├── help-slow.osc │ ├── help-sound-free.osc │ ├── help-sound.osc │ ├── help-speed.osc │ ├── help-state-add.osc │ ├── help-state-free.osc │ ├── help-status-reply.osc │ ├── help-stop.osc │ ├── help-tutorial.osc │ ├── help-ungroup.osc │ ├── help-wait.osc │ ├── help-window-center.osc │ ├── help-window-fullscreen.osc │ ├── help-window-position.osc │ ├── help-window-screen.osc │ ├── help-window-size.osc │ ├── help-window-top.osc │ ├── help-write.osc │ └── help-ysort.osc ├── markdeep │ ├── apidoc.css │ ├── markdeep.min.js │ └── slides.css ├── tutorial-actor-animation.osc ├── tutorial-actor-attributes.osc ├── tutorial-actor-multi.osc ├── tutorial-actors.osc ├── tutorial-commands.osc ├── tutorial-controls.osc ├── tutorial-index.osc ├── tutorial-utils-custom-cmds.osc ├── tutorial-utils-rand.osc └── tutorial.osc ├── fonts ├── WalterTurncoat.ttf └── mononoki_Bold.ttf ├── icon.png ├── icon.png.import ├── icons ├── action.svg ├── action.svg.import ├── animatron.ico ├── ull-128.png ├── ull-128.png.import ├── ull-16.png ├── ull-16.png.import ├── ull-256.png ├── ull-256.png.import ├── ull-32.png ├── ull-32.png.import ├── ull-48.png ├── ull-48.png.import ├── ull-64.png ├── ull-64.png.import ├── ull.svg └── ull.svg.import ├── project.godot ├── sc ├── .gdignore ├── Animatron │ └── Animatron.sc ├── config-test.scd ├── cube-routines-mod.scd ├── cube-routines.scd ├── dot.sc ├── dots.scd ├── letters-test.scd ├── midi-test.scd ├── osc-test.scd ├── salonLetters.txt ├── sequence-test.scd ├── setup.scd ├── sound-test.scd └── walkers.scd └── transparent_bg.tres /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/.gitignore -------------------------------------------------------------------------------- /Animation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Animation.gd -------------------------------------------------------------------------------- /AudioInputPlayer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/AudioInputPlayer.gd -------------------------------------------------------------------------------- /Config.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Config.gd -------------------------------------------------------------------------------- /CustomCommands.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/CustomCommands.gd -------------------------------------------------------------------------------- /Helper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Helper.gd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/LICENSE -------------------------------------------------------------------------------- /Letters.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Letters.gd -------------------------------------------------------------------------------- /Logger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Logger.gd -------------------------------------------------------------------------------- /Main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Main.gd -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Main.tscn -------------------------------------------------------------------------------- /MetaNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/MetaNode.gd -------------------------------------------------------------------------------- /MetaNode.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/MetaNode.tscn -------------------------------------------------------------------------------- /Midi.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/Midi.gd -------------------------------------------------------------------------------- /OscInterface.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/OscInterface.gd -------------------------------------------------------------------------------- /OscSender.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/OscSender.gd -------------------------------------------------------------------------------- /OscTextEdit.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/OscTextEdit.gd -------------------------------------------------------------------------------- /PostTextEdit.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/PostTextEdit.gd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/README.md -------------------------------------------------------------------------------- /RoutineNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/RoutineNode.gd -------------------------------------------------------------------------------- /RoutineNode.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/RoutineNode.tscn -------------------------------------------------------------------------------- /SpeechBubble.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/SpeechBubble.gd -------------------------------------------------------------------------------- /SpeechBubble.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/SpeechBubble.tscn -------------------------------------------------------------------------------- /actions/Action.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/actions/Action.gd -------------------------------------------------------------------------------- /actions/oscillate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/actions/oscillate.gd -------------------------------------------------------------------------------- /actions/wander.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/actions/wander.gd -------------------------------------------------------------------------------- /actions/wrap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/actions/wrap.gd -------------------------------------------------------------------------------- /addons/gdosc/bin/osx/libgdosc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/bin/osx/libgdosc.dylib -------------------------------------------------------------------------------- /addons/gdosc/bin/win64/libgdosc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/bin/win64/libgdosc.dll -------------------------------------------------------------------------------- /addons/gdosc/bin/win64/libgdosc.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/bin/win64/libgdosc.exp -------------------------------------------------------------------------------- /addons/gdosc/bin/win64/libgdosc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/bin/win64/libgdosc.lib -------------------------------------------------------------------------------- /addons/gdosc/bin/x11/libgdosc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/bin/x11/libgdosc.so -------------------------------------------------------------------------------- /addons/gdosc/gdosc.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/gdosc.gdnlib -------------------------------------------------------------------------------- /addons/gdosc/gdoscmsg.gdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/gdoscmsg.gdns -------------------------------------------------------------------------------- /addons/gdosc/gdoscreceiver.gdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/gdoscreceiver.gdns -------------------------------------------------------------------------------- /addons/gdosc/gdoscsender.gdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/gdoscsender.gdns -------------------------------------------------------------------------------- /addons/gdosc/gdscript_oscreceiver_template.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/gdscript_oscreceiver_template.gd -------------------------------------------------------------------------------- /addons/gdosc/gdscript_oscsender_template.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/addons/gdosc/gdscript_oscsender_template.gd -------------------------------------------------------------------------------- /animations/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/init.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/commands/init.osc -------------------------------------------------------------------------------- /commands/init_example.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/commands/init_example.osc -------------------------------------------------------------------------------- /commands/tutorial-cmds.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/commands/tutorial-cmds.osc -------------------------------------------------------------------------------- /config/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config_example.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/config/config_example.osc -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/default_env.tres -------------------------------------------------------------------------------- /docs/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/KeyboardShortcuts.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/KeyboardShortcuts.md.html -------------------------------------------------------------------------------- /docs/Reference.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/Reference.md.html -------------------------------------------------------------------------------- /docs/help-actor-free.osc: -------------------------------------------------------------------------------- 1 | /free actor:s 2 | 3 | Delete the ACTOR removing its instance. 4 | -------------------------------------------------------------------------------- /docs/help-create.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help-create.osc -------------------------------------------------------------------------------- /docs/help/help-action.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-action.osc -------------------------------------------------------------------------------- /docs/help/help-alpha.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-alpha.osc -------------------------------------------------------------------------------- /docs/help/help-angle.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-angle.osc -------------------------------------------------------------------------------- /docs/help/help-app-remote.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-app-remote.osc -------------------------------------------------------------------------------- /docs/help/help-assets-path.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-assets-path.osc -------------------------------------------------------------------------------- /docs/help/help-at.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-at.osc -------------------------------------------------------------------------------- /docs/help/help-behind.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-behind.osc -------------------------------------------------------------------------------- /docs/help/help-bg.osc: -------------------------------------------------------------------------------- 1 | /bg r:f 2 | 3 | /description Set the background color. 4 | -------------------------------------------------------------------------------- /docs/help/help-choose-arg.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-choose-arg.osc -------------------------------------------------------------------------------- /docs/help/help-choose.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-choose.osc -------------------------------------------------------------------------------- /docs/help/help-color-b.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-color-b.osc -------------------------------------------------------------------------------- /docs/help/help-color-g.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-color-g.osc -------------------------------------------------------------------------------- /docs/help/help-color-r.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-color-r.osc -------------------------------------------------------------------------------- /docs/help/help-color.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-color.osc -------------------------------------------------------------------------------- /docs/help/help-create-group.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-create-group.osc -------------------------------------------------------------------------------- /docs/help/help-create.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-create.osc -------------------------------------------------------------------------------- /docs/help/help-createordestroy.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-createordestroy.osc -------------------------------------------------------------------------------- /docs/help/help-debug.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-debug.osc -------------------------------------------------------------------------------- /docs/help/help-def.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-def.osc -------------------------------------------------------------------------------- /docs/help/help-deselect.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-deselect.osc -------------------------------------------------------------------------------- /docs/help/help-editor-append.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-editor-append.osc -------------------------------------------------------------------------------- /docs/help/help-editor-clear.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-editor-clear.osc -------------------------------------------------------------------------------- /docs/help/help-editor-font-decrease.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-editor-font-decrease.osc -------------------------------------------------------------------------------- /docs/help/help-editor-font-increase.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-editor-font-increase.osc -------------------------------------------------------------------------------- /docs/help/help-editor-font-size.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-editor-font-size.osc -------------------------------------------------------------------------------- /docs/help/help-editor-open.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-editor-open.osc -------------------------------------------------------------------------------- /docs/help/help-editor-save.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-editor-save.osc -------------------------------------------------------------------------------- /docs/help/help-error-reply.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-error-reply.osc -------------------------------------------------------------------------------- /docs/help/help-fade.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-fade.osc -------------------------------------------------------------------------------- /docs/help/help-fliph.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-fliph.osc -------------------------------------------------------------------------------- /docs/help/help-flipv.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-flipv.osc -------------------------------------------------------------------------------- /docs/help/help-frame-next.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-frame-next.osc -------------------------------------------------------------------------------- /docs/help/help-frame-prev.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-frame-prev.osc -------------------------------------------------------------------------------- /docs/help/help-frame.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-frame.osc -------------------------------------------------------------------------------- /docs/help/help-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-free.osc -------------------------------------------------------------------------------- /docs/help/help-front.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-front.osc -------------------------------------------------------------------------------- /docs/help/help-group.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-group.osc -------------------------------------------------------------------------------- /docs/help/help-help.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-help.osc -------------------------------------------------------------------------------- /docs/help/help-iter.osc: -------------------------------------------------------------------------------- 1 | /iter cmd:s 2 | 3 | /description Perform a CMD on every actor in the GROUP. 4 | -------------------------------------------------------------------------------- /docs/help/help-letter-scale.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-letter-scale.osc -------------------------------------------------------------------------------- /docs/help/help-letter-spacing.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-letter-spacing.osc -------------------------------------------------------------------------------- /docs/help/help-letter.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-letter.osc -------------------------------------------------------------------------------- /docs/help/help-list-actors-reply.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-actors-reply.osc -------------------------------------------------------------------------------- /docs/help/help-list-anims-reply.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-anims-reply.osc -------------------------------------------------------------------------------- /docs/help/help-list-anims.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-anims.osc -------------------------------------------------------------------------------- /docs/help/help-list-assets-reply.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-assets-reply.osc -------------------------------------------------------------------------------- /docs/help/help-list-assets.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-assets.osc -------------------------------------------------------------------------------- /docs/help/help-list-children.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-children.osc -------------------------------------------------------------------------------- /docs/help/help-list-commands.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-commands.osc -------------------------------------------------------------------------------- /docs/help/help-list-midi.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-midi.osc -------------------------------------------------------------------------------- /docs/help/help-list-sequence.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-sequence.osc -------------------------------------------------------------------------------- /docs/help/help-list-states.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list-states.osc -------------------------------------------------------------------------------- /docs/help/help-list.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-list.osc -------------------------------------------------------------------------------- /docs/help/help-load-alphabet.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-load-alphabet.osc -------------------------------------------------------------------------------- /docs/help/help-load-config.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-load-config.osc -------------------------------------------------------------------------------- /docs/help/help-load-defs.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-load-defs.osc -------------------------------------------------------------------------------- /docs/help/help-load.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-load.osc -------------------------------------------------------------------------------- /docs/help/help-loop.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-loop.osc -------------------------------------------------------------------------------- /docs/help/help-midi-debug.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-midi-debug.osc -------------------------------------------------------------------------------- /docs/help/help-midi-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-midi-free.osc -------------------------------------------------------------------------------- /docs/help/help-midi.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-midi.osc -------------------------------------------------------------------------------- /docs/help/help-move-x.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-move-x.osc -------------------------------------------------------------------------------- /docs/help/help-move-y.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-move-y.osc -------------------------------------------------------------------------------- /docs/help/help-move.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-move.osc -------------------------------------------------------------------------------- /docs/help/help-oneshot.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-oneshot.osc -------------------------------------------------------------------------------- /docs/help/help-onfinish-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-onfinish-free.osc -------------------------------------------------------------------------------- /docs/help/help-onfinish.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-onfinish.osc -------------------------------------------------------------------------------- /docs/help/help-onframe-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-onframe-free.osc -------------------------------------------------------------------------------- /docs/help/help-onframe.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-onframe.osc -------------------------------------------------------------------------------- /docs/help/help-osc-remote.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-osc-remote.osc -------------------------------------------------------------------------------- /docs/help/help-osc-send.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-osc-send.osc -------------------------------------------------------------------------------- /docs/help/help-parent-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-parent-free.osc -------------------------------------------------------------------------------- /docs/help/help-parent.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-parent.osc -------------------------------------------------------------------------------- /docs/help/help-pivot.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-pivot.osc -------------------------------------------------------------------------------- /docs/help/help-play-rand.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-play-rand.osc -------------------------------------------------------------------------------- /docs/help/help-play-range.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-play-range.osc -------------------------------------------------------------------------------- /docs/help/help-play.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-play.osc -------------------------------------------------------------------------------- /docs/help/help-position-x.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-position-x.osc -------------------------------------------------------------------------------- /docs/help/help-position-y.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-position-y.osc -------------------------------------------------------------------------------- /docs/help/help-position.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-position.osc -------------------------------------------------------------------------------- /docs/help/help-post-font-decrease.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-post-font-decrease.osc -------------------------------------------------------------------------------- /docs/help/help-post-font-increase.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-post-font-increase.osc -------------------------------------------------------------------------------- /docs/help/help-post-font-size.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-post-font-size.osc -------------------------------------------------------------------------------- /docs/help/help-post.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-post.osc -------------------------------------------------------------------------------- /docs/help/help-rand.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-rand.osc -------------------------------------------------------------------------------- /docs/help/help-rotate.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-rotate.osc -------------------------------------------------------------------------------- /docs/help/help-routine-free-all.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-routine-free-all.osc -------------------------------------------------------------------------------- /docs/help/help-routine-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-routine-free.osc -------------------------------------------------------------------------------- /docs/help/help-routine-start.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-routine-start.osc -------------------------------------------------------------------------------- /docs/help/help-routine-stop.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-routine-stop.osc -------------------------------------------------------------------------------- /docs/help/help-routine.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-routine.osc -------------------------------------------------------------------------------- /docs/help/help-say.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-say.osc -------------------------------------------------------------------------------- /docs/help/help-scale-x.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-scale-x.osc -------------------------------------------------------------------------------- /docs/help/help-scale-xy.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-scale-xy.osc -------------------------------------------------------------------------------- /docs/help/help-scale-y.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-scale-y.osc -------------------------------------------------------------------------------- /docs/help/help-scale.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-scale.osc -------------------------------------------------------------------------------- /docs/help/help-select.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-select.osc -------------------------------------------------------------------------------- /docs/help/help-selected.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-selected.osc -------------------------------------------------------------------------------- /docs/help/help-size-x.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-size-x.osc -------------------------------------------------------------------------------- /docs/help/help-size-xy.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-size-xy.osc -------------------------------------------------------------------------------- /docs/help/help-size-y.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-size-y.osc -------------------------------------------------------------------------------- /docs/help/help-size.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-size.osc -------------------------------------------------------------------------------- /docs/help/help-slow.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-slow.osc -------------------------------------------------------------------------------- /docs/help/help-sound-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-sound-free.osc -------------------------------------------------------------------------------- /docs/help/help-sound.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-sound.osc -------------------------------------------------------------------------------- /docs/help/help-speed.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-speed.osc -------------------------------------------------------------------------------- /docs/help/help-state-add.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-state-add.osc -------------------------------------------------------------------------------- /docs/help/help-state-free.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-state-free.osc -------------------------------------------------------------------------------- /docs/help/help-status-reply.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-status-reply.osc -------------------------------------------------------------------------------- /docs/help/help-stop.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-stop.osc -------------------------------------------------------------------------------- /docs/help/help-tutorial.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-tutorial.osc -------------------------------------------------------------------------------- /docs/help/help-ungroup.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-ungroup.osc -------------------------------------------------------------------------------- /docs/help/help-wait.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-wait.osc -------------------------------------------------------------------------------- /docs/help/help-window-center.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-window-center.osc -------------------------------------------------------------------------------- /docs/help/help-window-fullscreen.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-window-fullscreen.osc -------------------------------------------------------------------------------- /docs/help/help-window-position.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-window-position.osc -------------------------------------------------------------------------------- /docs/help/help-window-screen.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-window-screen.osc -------------------------------------------------------------------------------- /docs/help/help-window-size.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-window-size.osc -------------------------------------------------------------------------------- /docs/help/help-window-top.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-window-top.osc -------------------------------------------------------------------------------- /docs/help/help-write.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-write.osc -------------------------------------------------------------------------------- /docs/help/help-ysort.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/help/help-ysort.osc -------------------------------------------------------------------------------- /docs/markdeep/apidoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/markdeep/apidoc.css -------------------------------------------------------------------------------- /docs/markdeep/markdeep.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/markdeep/markdeep.min.js -------------------------------------------------------------------------------- /docs/markdeep/slides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/markdeep/slides.css -------------------------------------------------------------------------------- /docs/tutorial-actor-animation.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-actor-animation.osc -------------------------------------------------------------------------------- /docs/tutorial-actor-attributes.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-actor-attributes.osc -------------------------------------------------------------------------------- /docs/tutorial-actor-multi.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-actor-multi.osc -------------------------------------------------------------------------------- /docs/tutorial-actors.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-actors.osc -------------------------------------------------------------------------------- /docs/tutorial-commands.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-commands.osc -------------------------------------------------------------------------------- /docs/tutorial-controls.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-controls.osc -------------------------------------------------------------------------------- /docs/tutorial-index.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-index.osc -------------------------------------------------------------------------------- /docs/tutorial-utils-custom-cmds.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-utils-custom-cmds.osc -------------------------------------------------------------------------------- /docs/tutorial-utils-rand.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial-utils-rand.osc -------------------------------------------------------------------------------- /docs/tutorial.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/docs/tutorial.osc -------------------------------------------------------------------------------- /fonts/WalterTurncoat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/fonts/WalterTurncoat.ttf -------------------------------------------------------------------------------- /fonts/mononoki_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/fonts/mononoki_Bold.ttf -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icon.png.import -------------------------------------------------------------------------------- /icons/action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/action.svg -------------------------------------------------------------------------------- /icons/action.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/action.svg.import -------------------------------------------------------------------------------- /icons/animatron.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/animatron.ico -------------------------------------------------------------------------------- /icons/ull-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-128.png -------------------------------------------------------------------------------- /icons/ull-128.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-128.png.import -------------------------------------------------------------------------------- /icons/ull-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-16.png -------------------------------------------------------------------------------- /icons/ull-16.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-16.png.import -------------------------------------------------------------------------------- /icons/ull-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-256.png -------------------------------------------------------------------------------- /icons/ull-256.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-256.png.import -------------------------------------------------------------------------------- /icons/ull-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-32.png -------------------------------------------------------------------------------- /icons/ull-32.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-32.png.import -------------------------------------------------------------------------------- /icons/ull-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-48.png -------------------------------------------------------------------------------- /icons/ull-48.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-48.png.import -------------------------------------------------------------------------------- /icons/ull-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-64.png -------------------------------------------------------------------------------- /icons/ull-64.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull-64.png.import -------------------------------------------------------------------------------- /icons/ull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull.svg -------------------------------------------------------------------------------- /icons/ull.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/icons/ull.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/project.godot -------------------------------------------------------------------------------- /sc/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sc/Animatron/Animatron.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/Animatron/Animatron.sc -------------------------------------------------------------------------------- /sc/config-test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/config-test.scd -------------------------------------------------------------------------------- /sc/cube-routines-mod.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/cube-routines-mod.scd -------------------------------------------------------------------------------- /sc/cube-routines.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/cube-routines.scd -------------------------------------------------------------------------------- /sc/dot.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/dot.sc -------------------------------------------------------------------------------- /sc/dots.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/dots.scd -------------------------------------------------------------------------------- /sc/letters-test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/letters-test.scd -------------------------------------------------------------------------------- /sc/midi-test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/midi-test.scd -------------------------------------------------------------------------------- /sc/osc-test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/osc-test.scd -------------------------------------------------------------------------------- /sc/salonLetters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/salonLetters.txt -------------------------------------------------------------------------------- /sc/sequence-test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/sequence-test.scd -------------------------------------------------------------------------------- /sc/setup.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/setup.scd -------------------------------------------------------------------------------- /sc/sound-test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/sound-test.scd -------------------------------------------------------------------------------- /sc/walkers.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/sc/walkers.scd -------------------------------------------------------------------------------- /transparent_bg.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopier/animatron-godot3/HEAD/transparent_bg.tres --------------------------------------------------------------------------------