This commit is contained in:
2026-05-06 17:52:45 -07:00
parent 9fc3f35125
commit 1463c23334
402 changed files with 3758 additions and 0 deletions

View File

@ -0,0 +1,2 @@
The level is built using [SpryTile blender add-on](https://chemikhazi.itch.io/sprytile).
https://github.com/leenkx3d/leenkx/wiki/Tilesheets

View File

@ -0,0 +1,22 @@
package lnx;
class AnimControl extends iron.Trait {
var tilesheet:iron.object.Tilesheet;
public function new() {
super();
notifyOnInit(function() {
tilesheet = cast(object, iron.object.MeshObject).tilesheet;
iron.system.Tween.timer(Std.random(8), playAnim);
});
}
function playAnim() {
tilesheet.play("rest", function() {
tilesheet.play("idle");
iron.system.Tween.timer(Std.random(8), playAnim);
});
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.