aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:12:32 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:12:32 -0400
commitae024b5ad89b789a8fb68cb51308680f3270e6b6 (patch)
treefe7fed230f7f302355ab1273ddceffd8fb890f22
parent4d990caeb4b81a98b5f3fce11dc469e1b755d3c0 (diff)
Added player and rabbit textures
-rw-r--r--Assets/player.pngbin0 -> 482 bytes
-rw-r--r--Assets/rabbit.pngbin0 -> 257 bytes
-rw-r--r--Scripts/init.lua4
3 files changed, 2 insertions, 2 deletions
diff --git a/Assets/player.png b/Assets/player.png
new file mode 100644
index 0000000..570bc8e
--- /dev/null
+++ b/Assets/player.png
Binary files differ
diff --git a/Assets/rabbit.png b/Assets/rabbit.png
new file mode 100644
index 0000000..2920c0b
--- /dev/null
+++ b/Assets/rabbit.png
Binary files differ
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)