1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2025-05-04 15:21:11 +00:00

NaNs are handled

This commit is contained in:
Acamaeda 2020-10-27 17:41:35 -04:00
parent 9bfe0fc3d3
commit de17f38f2f
5 changed files with 55 additions and 9 deletions

View file

@ -1,5 +1,9 @@
var layers = {}
const decimalZero = new Decimal(0)
const decimalOne = new Decimal(1)
const decimalNaN = new Decimal(NaN)
function layerShown(layer){
return layers[layer].layerShown();
}