From fb0579a8ddba742eea0f5a1c90957278d07c03e0 Mon Sep 17 00:00:00 2001 From: An Orbit <68935009+orbit-loona@users.noreply.github.com> Date: Mon, 8 May 2023 12:56:54 -0400 Subject: [PATCH] merged with inv_dyes --- mods/invisible_wall.js | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 mods/invisible_wall.js diff --git a/mods/invisible_wall.js b/mods/invisible_wall.js deleted file mode 100644 index 3aeb3549..00000000 --- a/mods/invisible_wall.js +++ /dev/null @@ -1,21 +0,0 @@ -if(!settings) { - settings = {} -} - -if(!settings.bg) { - settings.bg = "#000000" -} - -elements.invisible_wall = { - color: settings.bg, - behavior: behaviors.WALL, - tick: function(pixel) { - var backgroundColor = hexToRGB(settings.bg); - var rgbValue = "rgb("+backgroundColor.r+","+backgroundColor.g+","+backgroundColor.b+")"; - pixel.color = rgbValue; - }, - insulate: true, - hardness: 1, - category: "special", - state: "solid", -};