From e281a041bbda98d11f5ec2c0ac61fff5cee9e986 Mon Sep 17 00:00:00 2001 From: John Alanbrook Date: Sun, 30 Apr 2023 03:11:17 +0000 Subject: [PATCH] colors --- config.js | 20 +++++++++++++++++++- game.info | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/config.js b/config.js index 7a563b6..f9dda83 100644 --- a/config.js +++ b/config.js @@ -3,6 +3,24 @@ gameobject.clone("ball", { img: sprite.clone(), }); +var Gameboy = { + darkest: [15,56,15], + dark: [48,98,48], + light: [139,172,15], + lightest: [155,188,15] +}; + +var Rainbow = { + red: [204,0,1], + orange: [255,102,0], + darkorange: [205,102,1], + yellow: [205,204,0], + green: [0,153,1], + blue: [53,51,255] +}; + +var Resources = []; + Resources["brick.png"] = { frames:6, fps:24, @@ -12,7 +30,7 @@ Resources["brick.png"] = { gameobject.clone("brick", { collider: polygon2d.clone(), char: char2d.clone({ - flash:"brick.png"} + flash:"brick.png" }), start() { diff --git a/game.info b/game.info index 406d7f4..5e70584 100644 --- a/game.info +++ b/game.info @@ -1 +1 @@ -Yugine v. 0.0.1-807496f, sys dbg. \ No newline at end of file +Yugine v. 0.0.1-bfa523d, sys dbg. \ No newline at end of file