summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthe lemons <citrons@mondecitronne.com>2022-12-22 16:15:14 -0600
committerthe lemons <citrons@mondecitronne.com>2022-12-22 16:15:14 -0600
commit1354987c10c6ac6803a8e49d40e4f360f052a4de (patch)
treed19ef0707e1a0ac617fbc82a593abc6918f883c5
parent477c3126484591b1ebb21df69c77ca2d7524c4f6 (diff)
slight color alteration
-rw-r--r--objects/test.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/objects/test.lua b/objects/test.lua
index 9d72b29..126d22a 100644
--- a/objects/test.lua
+++ b/objects/test.lua
@@ -1,8 +1,9 @@
local test = {hitbox = 4}
function test:draw()
+ set_color(0.95, 0.95, 0.95)
line(-4, 4, 0, -4, 4, 4, -4, 4)
- set_color(4, 0.6, 0.7)
+ set_color(1, 0.6, 0.7)
line(4, -4, 0, 4, -4, -4, 4, -4)
end