Skip to content

Commit 86e07cc

Browse files
author
Andy Belle-Isle
committed
Spread out the entities a bit on the test triangle screen
1 parent fe0e56f commit 86e07cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Scripts/init.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ cat = {
2828
y = 0.0
2929
},
3030
Position = {
31-
x = 50,
32-
y = 0
31+
x = 180,
32+
y = -75
3333
},
3434
Render = {
3535
texture = "Assets/cat.png",
@@ -58,7 +58,7 @@ animal = {
5858
},
5959
Idle = function(self)
6060
self.Velocity.x = -200 * math.sin(math.rad(self.counter));
61-
self.Velocity.y = 100 * math.cos(math.rad(self.counter*5));
61+
self.Velocity.y = 500 * math.cos(math.rad(self.counter*5));
6262
self.counter = self.counter + 5;
6363
end,
6464
counter = 0;

0 commit comments

Comments
 (0)