From d9b05f335a150d3e7ecf0ebe574b558fae213ac1 Mon Sep 17 00:00:00 2001 From: HackDev <80620538+Hackx2@users.noreply.github.com> Date: Sat, 17 Feb 2024 18:27:43 +0000 Subject: [PATCH 1/2] Revert "Create BlendModeEffect.hx" This reverts commit aa9202e44af31990768c6104e16227766b6bacba. --- .../game/objects/shaders/BlendModeEffect.hx | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 source/game/objects/shaders/BlendModeEffect.hx diff --git a/source/game/objects/shaders/BlendModeEffect.hx b/source/game/objects/shaders/BlendModeEffect.hx deleted file mode 100644 index 5bcd5740..00000000 --- a/source/game/objects/shaders/BlendModeEffect.hx +++ /dev/null @@ -1,34 +0,0 @@ -package game.objects.shaders; - -import flixel.util.FlxColor; -import openfl.display.ShaderParameter; - -typedef BlendModeShader = -{ - var uBlendColor:ShaderParameter; -} - -class BlendModeEffect -{ - public var shader(default, null):BlendModeShader; - - @:isVar - public var color(default, set):FlxColor; - - public function new(shader:BlendModeShader, color:FlxColor):Void - { - shader.uBlendColor.value = []; - this.shader = shader; - this.color = color; - } - - function set_color(color:FlxColor):FlxColor - { - shader.uBlendColor.value[0] = color.redFloat; - shader.uBlendColor.value[1] = color.greenFloat; - shader.uBlendColor.value[2] = color.blueFloat; - shader.uBlendColor.value[3] = color.alphaFloat; - - return this.color = color; - } -} \ No newline at end of file From 33d697b067a17d1abdcf92d708b9bbb3cb8a1f42 Mon Sep 17 00:00:00 2001 From: HackDev <80620538+Hackx2@users.noreply.github.com> Date: Sat, 17 Feb 2024 18:27:48 +0000 Subject: [PATCH 2/2] fff --- art/{icons => icon}/icon16.png | Bin art/{icons => icon}/icon32.png | Bin art/{icons => icon}/icon64.png | Bin art/{icons => icon}/iconOG.png | Bin 4 files changed, 0 insertions(+), 0 deletions(-) rename art/{icons => icon}/icon16.png (100%) rename art/{icons => icon}/icon32.png (100%) rename art/{icons => icon}/icon64.png (100%) rename art/{icons => icon}/iconOG.png (100%) diff --git a/art/icons/icon16.png b/art/icon/icon16.png similarity index 100% rename from art/icons/icon16.png rename to art/icon/icon16.png diff --git a/art/icons/icon32.png b/art/icon/icon32.png similarity index 100% rename from art/icons/icon32.png rename to art/icon/icon32.png diff --git a/art/icons/icon64.png b/art/icon/icon64.png similarity index 100% rename from art/icons/icon64.png rename to art/icon/icon64.png diff --git a/art/icons/iconOG.png b/art/icon/iconOG.png similarity index 100% rename from art/icons/iconOG.png rename to art/icon/iconOG.png