Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
skhaz committed Nov 17, 2023
1 parent ae4ba6c commit 40a7e12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ for _, name in ipairs(squares) do
local square = engine:spawn()
square.pixmap = name
square.on_update(function(self)
self.x = math.random(0, 854)
self.y = math.random(0, 480)
self.angle = math.random(0, 360)
self.x = 20 -- math.random(0, 854)
self.y = 10 -- math.random(0, 480)
self.angle = 45 --math.random(0, 360)
end)
end

Expand Down

0 comments on commit 40a7e12

Please sign in to comment.