An error occurred while loading the file. Please try again.
  • Matthias Betz's avatar
    add scaling · 4a40a34b
    Matthias Betz authored
    fix issue with loading positioning with no removed buildings
    fix issue with loading animated gltf
    4a40a34b
helpers.ts 201 bytes
var helpers = {
    stringToArray: function (input:string){
        if(input != null){
            return input.split(',');
        }else{
            return null;
};
export = helpers;