diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-01 19:12:32 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-01 19:12:32 -0400 |
commit | ae024b5ad89b789a8fb68cb51308680f3270e6b6 (patch) | |
tree | fe7fed230f7f302355ab1273ddceffd8fb890f22 | |
parent | 4d990caeb4b81a98b5f3fce11dc469e1b755d3c0 (diff) |
Added player and rabbit textures
-rw-r--r-- | Assets/player.png | bin | 0 -> 482 bytes | |||
-rw-r--r-- | Assets/rabbit.png | bin | 0 -> 257 bytes | |||
-rw-r--r-- | Scripts/init.lua | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/Assets/player.png b/Assets/player.png Binary files differnew file mode 100644 index 0000000..570bc8e --- /dev/null +++ b/Assets/player.png diff --git a/Assets/rabbit.png b/Assets/rabbit.png Binary files differnew file mode 100644 index 0000000..2920c0b --- /dev/null +++ b/Assets/rabbit.png diff --git a/Scripts/init.lua b/Scripts/init.lua index 3c9cf80..3e35da9 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -14,7 +14,7 @@ bird = { print("Bird spawn") end, Render = { - texture = "Assets/cat.png", + texture = "Assets/player.png", visible = true }, Idle = function(self) @@ -58,7 +58,7 @@ animal = { y = 0.0 }, Render = { - texture = "Assets/cat.png", + texture = "Assets/rabbit.png", visible = true }, Idle = function(self) |