btn download
btn cheatsheet
btn tutorials
btn community
btn animations

Quick Start Guide

Run the program by either clicking the executable or by opening a terminal and typing:

animatron

You will need, at least, one animation. If you don’t have one yet, you may download one of our animations. See how to install animations.

Type this code in the editor and evaluate each line with shift+enter:

(assets-path-set! "/path/to/your/animations/parent/dir")            ; Linux and MacOS
; or
(assets-path-set! "C:\\path\\to\\your\\animations\\parent\\dir")    ; Windows

(define-animation foo-jump)     ; assuming you have an animation called "foo-jump"
(define-actor foo foo-jump)

Code away!