1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2025-04-30 13:32:10 +00:00
This commit is contained in:
Acamaeda 2020-10-21 16:14:42 -04:00
parent b063265d03
commit d096c3c9b2
8 changed files with 19 additions and 14 deletions

View file

@ -115,7 +115,9 @@ function updateLayers(){
if(!layers[layer].componentStyles) layers[layer].componentStyles = {}
if(layers[layer].symbol === undefined) layers[layer].symbol = layer.charAt(0).toUpperCase() + layer.slice(1)
if(layers[layer].unlockOrder === undefined) layers[layer].unlockOrder = 0
if(layers[layer].unlockOrder === undefined) layers[layer].unlockOrder = []
if(layers[layer].gainMult === undefined) layers[layer].gainMult = new Decimal(1)
if(layers[layer].gainExp === undefined) layers[layer].gainExp = new Decimal(1)
let row = layers[layer].row
if(!ROW_LAYERS[row]) ROW_LAYERS[row] = {}
@ -142,7 +144,6 @@ function updateLayers(){
function addLayer(layerName, layerData){ // Call this to add layers from a different file!
layers[layerName] = layerData
updateLayers()
}
// If data is a function, return the result of calling it. Otherwise, return the data.