This website is currently in beta and for testing purpose only. The accuracy of loadout is not guaranted. Especially some items, materials won't render properly. You can get support here: Steam community group
Render reflections (experimental)
Pause
BETA
function additionalStartup() {
//initBackGroundList(selectBackground, backgroundList);
TipBar.setContainer(tipBar);
}
function initBackGroundList(htmlList, list) {
if (htmlList==null||list==null) {
console.error("null args in initBackGroundList");
return;
}
for (var chapter in list) {
var sublist = list[chapter];
if (chapter!="") {
var o = document.createElement("option");
o.innerHTML = chapter;
o.disabled = true;
o.value = "";
o.className = "backgroundOption";
htmlList.appendChild(o);
}
for (var bgName in sublist) {
var bgValue = sublist[bgName];
var o = document.createElement("option");
o.innerHTML = bgName;
o.value = bgValue;
htmlList.appendChild(o);
}
}
}
function ChangeBackGround(background) {
if (background == "") {
background = null;
}
wallTextureRemote = background;
InitWallDim();
}
function SavePicture() {
if (glCanvas&&glCanvas.canvas) {
if (navigator.msSaveBlob) {
var s = glCanvas.canvas.msToBlob();
navigator.msSaveBlob(s, 'loadout.png');
} else {
var s = glCanvas.canvas.toDataURL();
window.open(s);
}
}
}