From c430f96e8423e37394bd2327fee6070c61261e2d Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Fri, 11 Feb 2022 15:29:59 -0500 Subject: [PATCH] v1.3 --- 404.html | 2 +- changelog.txt | 49 ++- index.html | 939 +++++++++++++++++++++++++++++++++++++------- mods/example_mod.js | 21 + 4 files changed, 854 insertions(+), 157 deletions(-) diff --git a/404.html b/404.html index 2db799a4..9b865194 100644 --- a/404.html +++ b/404.html @@ -81,5 +81,5 @@

< 404boxels

A rainforest made in Sandboxels

Uh oh! You sandboxed too hard and ended up in the place pixels go after they die.

-

Return to Reality

+

Return to Reality

\ No newline at end of file diff --git a/changelog.txt b/changelog.txt index 5987ebf7..d901328e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,14 +1,55 @@ [Future Plans] - + Artists' Update (Painting, Lines, Shapes, etc.) + + Artists' Update (Lines, Shapes, etc.) + Machines Update - + World Generation + More plans / feedback at https://docs.google.com/document/u/4/d/1R8xljj_J-K5oU-9y4louwplQmM-ZBvUfXmhbgj5LYdk/edit -[Version 1.3 BETA] +[Version 1.3 - Feb. 11, 2022] + + World Generation Setting [Beta] + + Staining + + Some liquids will stain solids, some will clean + + Smoke now stains solids (soot) + + Staining can be disabled in settings + + Paint tool + + Hold Shift to color solid + + Unpaint tool + Color Sand + Stained Glass - + Grenades will explode into metal fragments + + Smog + + Hail + + Hail Cloud + + Seltzer (Carbonated Water, Hidden) + + Soda + + Bleach + + Chlorine + + Liquid Chlorine (Hidden) + + Thermite + + Cement + + Dye (Color mixing not added) + + Ink + + Color Smoke + + Sponge + + "Art" element, a wall that can be colored + + Uncharge tool + + Smash tool + + Cook tool + + Sugar will help Cells and Cancer grow + + Alcohol and Poison will kill Cells and Cancer + + Soap now removes Oil + + Gray Goo can now be electrocuted + + Rats now eat cheese + + Oxygen and Water makes Foam + + Torches can be extinguished with more types of Water + + Acid Gas now turns to Acid when cold + ~ Tweaked Acid Gas color + ~ Grenades now explode into metal fragments ~ Fixed: Pressure Plates... + + Technical: Custom tools, see example_mod.js + + Technical: "stain" element attribute, decimal value -1 to 1, negative values remove stains + + Technical: "customColor" element attribute, true/false, allows for picking of a color before placing + + Technical: "desc" element attribute, string, allows for custom descriptions in Element Info ("extraInfo" an alias) + + Technical: null allowed in stateHigh and stateLow, deletes pixel + + Technical: Reaction attributes "tempMin"(number) "tempMax"(number) "charged"(true/false) "charge1"(number) "charge2"(number) + + Technical: changePixel(pixel,newElement) function [Version 1.2 - Feb. 4, 2022] + Human diff --git a/index.html b/index.html index 484d92cc..e37ca4a5 100644 --- a/index.html +++ b/index.html @@ -388,6 +388,15 @@ padding: 0.5em; color: white; } + #canvasDiv { + position:relative; + } + #colorSelector { + position:absolute; + bottom:1em; + right:1em; + display: none; + }