├── .github ├── FUNDING.yml ├── images │ └── grid_example.png └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── anima ├── anima.odin ├── anima_fsm │ └── fsm.odin └── anima_raylib │ └── raylib.odin ├── examples ├── anim8_1945 │ ├── assets │ │ ├── 1945.png │ │ └── license.txt │ └── main.odin └── cat_fighter_fsm │ ├── assets │ └── cat_fighter.png │ └── main.odin └── ols.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/images/grid_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/.github/images/grid_example.png -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/README.md -------------------------------------------------------------------------------- /anima/anima.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/anima/anima.odin -------------------------------------------------------------------------------- /anima/anima_fsm/fsm.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/anima/anima_fsm/fsm.odin -------------------------------------------------------------------------------- /anima/anima_raylib/raylib.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/anima/anima_raylib/raylib.odin -------------------------------------------------------------------------------- /examples/anim8_1945/assets/1945.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/examples/anim8_1945/assets/1945.png -------------------------------------------------------------------------------- /examples/anim8_1945/assets/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/examples/anim8_1945/assets/license.txt -------------------------------------------------------------------------------- /examples/anim8_1945/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/examples/anim8_1945/main.odin -------------------------------------------------------------------------------- /examples/cat_fighter_fsm/assets/cat_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/examples/cat_fighter_fsm/assets/cat_fighter.png -------------------------------------------------------------------------------- /examples/cat_fighter_fsm/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/examples/cat_fighter_fsm/main.odin -------------------------------------------------------------------------------- /ols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicptr/anima/HEAD/ols.json --------------------------------------------------------------------------------