example/plateform: add coin assets

This commit is contained in:
Kazhnuz 2019-05-05 15:35:34 +02:00
parent f71c3b3548
commit b41680fc8d
3 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,16 @@
return {
metadata = {
height = 16,
width = 16,
defaultAnim = "anim"
},
animations = {
["anim"] = {
startAt = 1,
endAt = 4,
loop = 1,
speed = 6,
pauseAtEnd = false,
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -1,5 +1,6 @@
return {
["sprites"] = {
{"player", "examples/gameplay/plateform/assets/monkey_lad"}
{"player", "examples/gameplay/plateform/assets/monkey_lad"},
{"coin", "examples/gameplay/plateform/assets/coin5"}
}
}