Update index.html
This commit is contained in:
parent
0d5c6af4c9
commit
2b19fecf97
22
index.html
22
index.html
|
|
@ -64,7 +64,7 @@
|
||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": ["VideoGame","MobileApplication","WebApplication"],
|
"@type": ["VideoGame","MobileApplication","WebApplication"],
|
||||||
"gamePlatform":"Web Browser",
|
"gamePlatform":["Web Browser","Windows","macOS"],
|
||||||
"image":"https://sandboxels.r74n.com/icons/icon.png",
|
"image":"https://sandboxels.r74n.com/icons/icon.png",
|
||||||
"url": "https://sandboxels.r74n.com",
|
"url": "https://sandboxels.r74n.com",
|
||||||
"name":"Sandboxels",
|
"name":"Sandboxels",
|
||||||
|
|
@ -78,19 +78,22 @@
|
||||||
"availability":"https://schema.org/InStock"
|
"availability":"https://schema.org/InStock"
|
||||||
},
|
},
|
||||||
"genre": "Falling-sand game",
|
"genre": "Falling-sand game",
|
||||||
"softwareVersion":"1.10.2",
|
"softwareVersion":"1.11.2",
|
||||||
"datePublished":"2021-12-15",
|
"datePublished":"2021-12-15",
|
||||||
"dateCreated":"2021-12-15",
|
"dateCreated":"2021-12-15",
|
||||||
"gameTip":"https://sandboxels.r74n.com/controls",
|
"gameTip":"https://sandboxels.r74n.com/controls",
|
||||||
"softwareHelp":"https://sandboxels.r74n.com/controls",
|
"softwareHelp":"https://sandboxels.r74n.com/controls",
|
||||||
"releaseNotes":"https://sandboxels.r74n.com/changelog",
|
"releaseNotes":"https://sandboxels.r74n.com/changelog",
|
||||||
"screenshot": "https://sandboxels.r74n.com/icons/wallpaper.png",
|
"screenshot": "https://sandboxels.r74n.com/icons/cover-3840x1240px-text.png",
|
||||||
"softwareRequirements": "HTML5",
|
"softwareRequirements": "HTML5",
|
||||||
"archivedAt": "https://web.archive.org/web/20230519005427/https://sandboxels.r74n.com/",
|
"archivedAt": "https://web.archive.org/web/20230519005427/https://sandboxels.r74n.com/",
|
||||||
"copyrightYear": 2024,
|
"copyrightYear": 2021,
|
||||||
"copyrightNotice": "©2021-2024. All Rights Reserved. R74n",
|
"copyrightNotice": "©2021-2025. All Rights Reserved. R74n",
|
||||||
"license": "https://sandboxels.r74n.com/license.txt",
|
"license": "https://sandboxels.r74n.com/license.txt",
|
||||||
"discussionUrl": "https://r74n.com/discord/",
|
"discussionUrl": ["https://r74n.com/discord/","https://www.reddit.com/r/Sandboxels/","https://steamcommunity.com/app/3664820/discussions/"],
|
||||||
|
"downloadUrl": "https://store.steampowered.com/app/3664820/Sandboxels/",
|
||||||
|
"installUrl": "https://store.steampowered.com/app/3664820/Sandboxels/",
|
||||||
|
"trailer": "https://www.youtube.com/watch?v=TgHnD-KRieM",
|
||||||
"educationalUse": "Hands-on lab experiments and learning",
|
"educationalUse": "Hands-on lab experiments and learning",
|
||||||
"headline": "Sandboxels",
|
"headline": "Sandboxels",
|
||||||
"isAccessibleForFree": true,
|
"isAccessibleForFree": true,
|
||||||
|
|
@ -12976,6 +12979,11 @@ if (standalone) {
|
||||||
var script = document.createElement('script');
|
var script = document.createElement('script');
|
||||||
script.src = "mods/glow.js";
|
script.src = "mods/glow.js";
|
||||||
document.head.appendChild(script);
|
document.head.appendChild(script);
|
||||||
|
if (standaloneType === "steam") {
|
||||||
|
var script = document.createElement('script');
|
||||||
|
script.src = "mods/steam_port.js";
|
||||||
|
document.head.appendChild(script);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var currentMonth = new Date().getMonth();
|
var currentMonth = new Date().getMonth();
|
||||||
|
|
@ -15894,7 +15902,7 @@ behaviorRules = {
|
||||||
ctx.drawImage(placingImage,0,0,newWidth,newHeight);
|
ctx.drawImage(placingImage,0,0,newWidth,newHeight);
|
||||||
var newImage = ctx.getImageData(0,0,newWidth,newHeight);
|
var newImage = ctx.getImageData(0,0,newWidth,newHeight);
|
||||||
var elem = (settings.imageelem || "wood");
|
var elem = (settings.imageelem || "wood");
|
||||||
if ((!elements[elem] || elements[elem].tool || elements[elem].canPlace===false) && elem !== "paint") { elem = "wood";}
|
if ((!elements[elem] || elements[elem].tool || elements[elem].canPlace===false) && elem !== "paint" && !elements[elem].canPlace) { elem = "wood";}
|
||||||
// loop through each pixel in the ImageData
|
// loop through each pixel in the ImageData
|
||||||
for (var x = 0; x < newWidth; x++) {
|
for (var x = 0; x < newWidth; x++) {
|
||||||
for (var y = 0; y < newHeight; y++) {
|
for (var y = 0; y < newHeight; y++) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue