diff --git a/js/loadScene.js b/js/loadScene.js index 6020986..547b2ad 100644 --- a/js/loadScene.js +++ b/js/loadScene.js @@ -70,7 +70,7 @@ require([ // Create typical goo application var goo = new GooRunner({ manuallyStartGameLoop: true, - tpfSmoothingCount:3, + tpfSmoothingCount:1, showStats:true }); Game.goo = goo; @@ -80,7 +80,7 @@ require([ goo.world.setSystem(new HowlerSystem()); var navMesh; - //var point; + var point; // The Loader takes care of loading data from a URL... var loader = new DynamicLoader({world: goo.world, rootPath: 'res'}); var promises = []; @@ -97,16 +97,16 @@ require([ function initGoobers(goo){ console.log(loader._configs); - var point = loader.getCachedObjectForRef("Point/entities/RootNode.entity"); - point.transformComponent.setScale(0.01, 0.01, 0.01); + point = loader.getCachedObjectForRef("Point/entities/RootNode.entity"); + point.transformComponent.setScale(0.03, 0.03, 0.03); point.removeFromWorld(); navMesh = generateRoomsFromMesh(loader.getCachedObjectForRef("NavMesh/entities/RootNode.entity")); - /*for(var i in navMesh.vert){ - var p = EntityUtils.clone(goo.world, point); - p.transformComponent.setTranslation(navMesh.vert[i]); - p.addToWorld(); - }*/ + //for(var i in navMesh.vert){ + // var p = EntityUtils.clone(goo.world, point); + // p.transformComponent.setTranslation(navMesh.vert[i]); + // p.addToWorld(); + //} generateDoors(navMesh); @@ -138,7 +138,8 @@ require([ var zombie = loader.getCachedObjectForRef("zombie_idle/entities/Zombie_Geo_0.entity"); //zombie.removeFromWorld(); // this breaks the parent child relationship, the parent has the animation that I need... var z2 = zombie; // EntityUtils.clone(goo.world, zombie); - z2.transformComponent.setTranslation(-2,0,2); + z2.transformComponent.setTranslation(50,0,50); + z2.transformComponent.setUpdated(); z2.setComponent(new AIComponent(z2)); z2.aIComponent.addBehavior({name:"Zombie-Idle", update:ZombieIdle}, 0); z2.aIComponent.addBehavior({name:"Zombie-PathFind", update:ZombiePathFind}, 1); @@ -244,7 +245,7 @@ require([ var currentRoom; function getPathRoomToRoom(roomStart, roomGoal){ if(null == roomStart || null == roomGoal){return null;} - console.log("start:"+roomStart+" goal:"+roomGoal); + // console.log("Getting Path from start:"+roomStart+" to goal:"+roomGoal); openList.push({room:roomStart, parent:null}); var pathFound = false; while(openList.length > 0 && false == pathFound){ @@ -293,7 +294,7 @@ require([ picking.castRay(ray, function(hit){ if(null != hit){ entity.room = hit.entity.navID; - console.log("I am in room "+entity.room); + // console.log("I am in room "+entity.room); //console.log(hit); } }, 1); @@ -334,11 +335,11 @@ require([ } if(entity.transformComponent.transform.translation.distance(node.doorPos) <= 0.1){ //if(entity.room == node.curNode.room){ - console.log("got to room "+node.curNode.room); + // console.log("got to room "+node.curNode.room); entity.room = node.curNode.room; node.curNode = node.curNode.next; if(node.curNode != null){ - console.log("going to room "+node.curNode.room+" from room "+node.curNode.previous.room); + // console.log("going to room "+node.curNode.room+" from room "+node.curNode.previous.room); node.doorPos = navMesh.room[entity.room].door[node.curNode.door].center; } } @@ -379,7 +380,7 @@ require([ node.state = 2; return; } - console.log("I am not in "+node.goalRoom+" getting path."); + //console.log("(case 4)I am not in "+node.goalRoom+" getting path."); node.path = getPathRoomToRoom(entity.room, node.goalRoom); if(node.path != null){ node.curNode = node.path.first; @@ -392,7 +393,7 @@ require([ break; } function playerMoved(room, pos){ - console.log("playerMoved:"+room+","+pos); + // console.log("playerMoved:"+room+","+pos); node.goalRoom = room; if(node.goalRoom == entity.room){ @@ -400,7 +401,7 @@ require([ node.state = 2; return; } - console.log("I am not in "+node.goalRoom+" getting path."); + //console.log("playerMoved():I am not in "+node.goalRoom+" getting path."); node.path = getPathRoomToRoom(entity.room, node.goalRoom); if(node.path != null){ node.curNode = node.path.first; @@ -425,7 +426,7 @@ require([ var entity = navRootEntity.transformComponent.children[i].entity; entity.navID = i; entity.hitMask = 1; - entity.skip = true; + //entity.skip = true; // track which vertices we have already used @@ -434,18 +435,20 @@ require([ var verts = entity.meshDataComponent.meshData.dataViews.POSITION; for(var v = 0, vlen = verts.length; v < vlen; v+=3){ - var x = verts[v]; - var y = verts[v+2]; - var z = -verts[v+1]; - - room.center.x += x; - room.center.y += y; - room.center.z += z; + var x = ~~(verts[v]*1000000); + var y = ~~(verts[v+2]*1000000); + var z = -(~~(verts[v+1]*1000000)); + + room.center.x += verts[v]; + room.center.y += verts[v+2]; + room.center.z += -verts[v+1]; + + //console.log(x+","+y+","+z); // see if we have already added this vert or not if(null == roomVert[x+"_"+y+"_"+z]){ if(null == nav.vert[x+"_"+y+"_"+z]){ - nav.vert[x+"_"+y+"_"+z] = new Vector3(x, y, z); + nav.vert[x+"_"+y+"_"+z] = new Vector3(verts[v], verts[v+2], -verts[v+1]); } // if not, add it ot the room.point array room.vert.push(nav.vert[x+"_"+y+"_"+z]); @@ -460,13 +463,23 @@ require([ room.center.z /= room.vert.length; room.vert.sort(function (v1, v2){ - var rad1 = Math.atan2(room.center.z - v1.z, room.center.x - v1.x); - var rad2 = Math.atan2(room.center.z - v2.z, room.center.x - v2.x); + + var cos1 = (Math.atan((v1.z - room.center.z)/(v1.x - room.center.x)) * (180 / Math.PI)); + var cos2 = (Math.atan((v2.z - room.center.z)/(v2.x - room.center.x)) * (180 / Math.PI)); + + if(cos1 < 0){cos1 += 360;} + + if(cos2 < 0){cos2 += 360;} + + + //console.log("rad1:"+(cos1)+" rad2:"+(cos2)); // if you want ccw, swap 1 and -1 - if(rad1 > rad2){return 1;} - if(rad2 > rad1){return -1;} + if(cos1 > cos2){return 1;} + if(cos2 > cos1){return -1;} return 0; + return cos1-cos2; }); + //console.log(room.vert); // add the room to the 'nav' array. nav.room.push(room); @@ -476,55 +489,50 @@ require([ function generateDoors(nav){ for(var i = 0, ilen = nav.room.length; i < ilen; i++){ for(var j = i+1, jlen = nav.room.length; j < jlen; j++){ + //if(i == j){continue;} var room1 = nav.room[i]; var room2 = nav.room[j]; for(var l1 = 0, l1Max = room1.vert.length; l1 < l1Max; l1++){ for(var r2 = 0, r2Max = room2.vert.length; r2 < r2Max; r2++){ - if(room1.vert[l1].x === room2.vert[r2].x){ - if(room1.vert[l1].y === room2.vert[r2].y){ - if(room1.vert[l1].z === room2.vert[r2].z){ - - var r1 = -1; - var l2 = -1; - - if(l1 == room1.vert.length-1){ - r1 = 0; - } - else{ - r1 = l1+1; - } - if(r2 == 0){ - l2 = room2.vert.length-1; - } - else{ - l2 = r2-1; - } - if(room1.vert[r1].x === room2.vert[l2].x){ - if(room1.vert[r1].y === room2.vert[l2].y){ - if(room1.vert[r1].z === room2.vert[l2].z){ - - var dir = Vector3.sub(room1.vert[l1], room1.vert[r1]); - var radius = room1.vert[l1].distance(room1.vert[r1]) * 0.5; - dir.scale(0.5); - var center = new Vector3(); - Vector3.add(room1.vert[r1], dir, center); - var door1 = {center:center, left:room1.vert[l1], right:room1.vert[r1], to:room2.id, radius:radius}; - var door2 = {center:center, left:room2.vert[l2], right:room2.vert[r2], to:room1.id, radius:radius}; - - room1.door.push(door1); - room2.door.push(door2); - - - // var p = EntityUtils.clone(goo.world, point); - // p.transformComponent.setTranslation(door1.center); - // p.transformComponent.setScale(0.5, 0.3, 0.5); - // p.addToWorld(); - } - } - } - } + if(room1.vert[l1] === room2.vert[r2]){ + + var r1 = -1; + //var l2 = -1; + + + + if(l1 == room1.vert.length-1){ + r1 = 0; + } + else{ + r1 = l1+1; } + + var l2 = room2.vert.indexOf(room1.vert[r1]); + + if(l2 != -1){ + if(room1.vert[r1] === room2.vert[l2]){ + + var dir = Vector3.sub(room1.vert[l1], room1.vert[r1]); + var radius = room1.vert[l1].distance(room1.vert[r1]) * 0.5; + dir.scale(0.5); + var center = new Vector3(); + Vector3.add(room1.vert[r1], dir, center); + var door1 = {center:center, left:room1.vert[l1], right:room1.vert[r1], to:room2.id, radius:radius}; + var door2 = {center:center, left:room2.vert[l2], right:room2.vert[r2], to:room1.id, radius:radius}; + + room1.door.push(door1); + room2.door.push(door2); + + + //var p = EntityUtils.clone(goo.world, point); + //p.transformComponent.setTranslation(door1.center); + //p.transformComponent.setScale(0.1, 0.2, 0.1); + //p.addToWorld(); + } + } + } } } diff --git a/lib/FPSCamComponent.js b/lib/FPSCamComponent.js index f2996ac..36f7c9d 100644 --- a/lib/FPSCamComponent.js +++ b/lib/FPSCamComponent.js @@ -97,7 +97,7 @@ define([ function update(){ if(room != Game.userEntity.room){ if(room != -1){ - console.log("userEntity was in "+Game.userEntity.room+" now it is in "+room); + // console.log("userEntity was in "+Game.userEntity.room+" now it is in "+room); Game.raiseEvent("PlayerMoved", room, entityTransform.translation); Game.userEntity.room = room; } diff --git a/res/Geometry/binaries/1385113754_data.bin b/res/Geometry/binaries/1385113754_data.bin new file mode 100644 index 0000000..1050856 Binary files /dev/null and b/res/Geometry/binaries/1385113754_data.bin differ diff --git a/res/GroundPhys/binaries/1385113865_data.bin b/res/GroundPhys/binaries/1385113865_data.bin new file mode 100644 index 0000000..498877d Binary files /dev/null and b/res/GroundPhys/binaries/1385113865_data.bin differ diff --git a/res/GroundPhys/binaries/1385113866_data.bin b/res/GroundPhys/binaries/1385113866_data.bin new file mode 100644 index 0000000..498877d Binary files /dev/null and b/res/GroundPhys/binaries/1385113866_data.bin differ diff --git a/res/NavMesh/binaries/1385113128_data.bin b/res/NavMesh/binaries/1385113128_data.bin new file mode 100644 index 0000000..59048c1 Binary files /dev/null and b/res/NavMesh/binaries/1385113128_data.bin differ diff --git a/res/NavMesh/binaries/1385113503_data.bin b/res/NavMesh/binaries/1385113503_data.bin new file mode 100644 index 0000000..59048c1 Binary files /dev/null and b/res/NavMesh/binaries/1385113503_data.bin differ diff --git a/res/NavMesh/binaries/1385113671_data.bin b/res/NavMesh/binaries/1385113671_data.bin new file mode 100644 index 0000000..46a4c80 Binary files /dev/null and b/res/NavMesh/binaries/1385113671_data.bin differ diff --git a/res/PhysicsHull/binaries/1385113934_data.bin b/res/PhysicsHull/binaries/1385113934_data.bin new file mode 100644 index 0000000..9c30d5d Binary files /dev/null and b/res/PhysicsHull/binaries/1385113934_data.bin differ diff --git a/res/root.bundle b/res/root.bundle index 520b8eb..e769340 100644 --- a/res/root.bundle +++ b/res/root.bundle @@ -18,7 +18,7 @@ "Geometry/meshes/Geometry_Material1_0.mesh", "Geometry/textures/Seamless_ground_sand_texture.texture", "Geometry/meshes/Geometry_Material3_0.mesh", - "Geometry/binaries/1385086209_data.bin", + "Geometry/binaries/1385113754_data.bin", "Geometry/images/concrete_nobiax_smooth_01_diff.png", "Geometry/images/whitewall_dirty_01_decay_diff.png", "Geometry/images/whitewall_dirty_01_full_diff.png", @@ -233,18 +233,18 @@ "materialAmbient": { "enabled": true, "value": [ - 0.1803921568627451, - 0.1803921568627451, - 0.1803921568627451, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, "materialDiffuse": { "enabled": true, "value": [ - 0.1803921568627451, - 0.1803921568627451, - 0.1803921568627451, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, @@ -260,9 +260,9 @@ "materialSpecular": { "enabled": true, "value": [ - 0.21568627450980393, - 0.18823529411764706, - 0.1411764705882353, + 0, + 0, + 0, 1 ] }, @@ -323,18 +323,18 @@ "materialAmbient": { "enabled": true, "value": [ - 0.1803921568627451, - 0.1803921568627451, - 0.1803921568627451, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, "materialDiffuse": { "enabled": true, "value": [ - 0.1803921568627451, - 0.1803921568627451, - 0.1803921568627451, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, @@ -350,9 +350,9 @@ "materialSpecular": { "enabled": true, "value": [ - 0.21568627450980393, - 0.18823529411764706, - 0.1411764705882353, + 0, + 0, + 0, 1 ] }, @@ -413,18 +413,18 @@ "materialAmbient": { "enabled": true, "value": [ - 0.1803921568627451, - 0.1803921568627451, - 0.1803921568627451, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, "materialDiffuse": { "enabled": true, "value": [ - 0.1803921568627451, - 0.1803921568627451, - 0.1803921568627451, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, @@ -440,9 +440,9 @@ "materialSpecular": { "enabled": true, "value": [ - 0.21568627450980393, - 0.18823529411764706, - 0.1411764705882353, + 0, + 0, + 0, 1 ] }, @@ -503,18 +503,18 @@ "materialAmbient": { "enabled": true, "value": [ - 0.1803921568627451, - 0.1803921568627451, - 0.1803921568627451, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, "materialDiffuse": { "enabled": true, "value": [ - 0.18181818181818177, - 0.18181818181818177, - 0.18181818181818177, + 0.5879999995231628, + 0.5879999995231628, + 0.5879999995231628, 1 ] }, @@ -530,9 +530,9 @@ "materialSpecular": { "enabled": true, "value": [ - 0.21818181818181814, - 0.1904997746055597, - 0.14280991735537188, + 0, + 0, + 0, 1 ] }, @@ -555,7 +555,7 @@ } }, "Geometry/meshes/Geometry_Material0_0.mesh": { - "binaryRef": "Geometry/binaries/1385086209_data.bin", + "binaryRef": "Geometry/binaries/1385113754_data.bin", "boundingVolume": { "max": [ 57.01251983642578, @@ -612,7 +612,7 @@ ] }, "Geometry/meshes/Geometry_Material1_0.mesh": { - "binaryRef": "Geometry/binaries/1385086209_data.bin", + "binaryRef": "Geometry/binaries/1385113754_data.bin", "boundingVolume": { "max": [ 32.815025329589844, @@ -669,7 +669,7 @@ ] }, "Geometry/meshes/Geometry_Material2_0.mesh": { - "binaryRef": "Geometry/binaries/1385086209_data.bin", + "binaryRef": "Geometry/binaries/1385113754_data.bin", "boundingVolume": { "max": [ 32.26777648925781, @@ -726,7 +726,7 @@ ] }, "Geometry/meshes/Geometry_Material3_0.mesh": { - "binaryRef": "Geometry/binaries/1385086209_data.bin", + "binaryRef": "Geometry/binaries/1385113754_data.bin", "boundingVolume": { "max": [ 32.26777648925781, @@ -872,10 +872,10 @@ "GroundPhys/materials/DefaultMaterial.material", "GroundPhys/entities/Ground1_0.entity", "GroundPhys/meshes/Ground1_0.mesh", - "GroundPhys/binaries/1385086129_data.bin" + "GroundPhys/binaries/1385113865_data.bin", + "GroundPhys/binaries/1385113866_data.bin" ], - "name": "GroundPhys", - "ref": "GroundPhys/GroundPhys.group" + "name": "GroundPhys" }, "GroundPhys/entities/Ground1_0.entity": { "components": { @@ -1022,7 +1022,7 @@ } }, "GroundPhys/meshes/Ground1_0.mesh": { - "binaryRef": "GroundPhys/binaries/1385086129_data.bin", + "binaryRef": "GroundPhys/binaries/1385113866_data.bin", "boundingVolume": { "max": [ 57.29619598388672, @@ -1080,236 +1080,98 @@ }, "NavMesh/NavMesh.group": { "libraryRefs": [ - "NavMesh/meshes/Object80_0.mesh", - "NavMesh/meshes/Object37_0.mesh", - "NavMesh/entities/Object34_0.entity", - "NavMesh/meshes/Object88_0.mesh", - "NavMesh/meshes/Object25_0.mesh", - "NavMesh/entities/Door06_0.entity", - "NavMesh/meshes/Object39_0.mesh", - "NavMesh/meshes/Object87_0.mesh", - "NavMesh/meshes/Object35_0.mesh", - "NavMesh/entities/Object38_0.entity", - "NavMesh/meshes/Object93_0.mesh", - "NavMesh/meshes/Door06_0.mesh", - "NavMesh/entities/Object90_0.entity", - "NavMesh/entities/Object91_0.entity", - "NavMesh/meshes/Object38_0.mesh", - "NavMesh/meshes/Object54_0.mesh", - "NavMesh/entities/Object63_0.entity", - "NavMesh/entities/Object23_0.entity", - "NavMesh/meshes/broken_door_0.mesh", - "NavMesh/entities/Object24_0.entity", - "NavMesh/entities/Object100_0.entity", - "NavMesh/entities/Object94_0.entity", - "NavMesh/meshes/Object59_0.mesh", - "NavMesh/entities/Object81_0.entity", - "NavMesh/entities/Object14_0.entity", - "NavMesh/entities/Object20_0.entity", - "NavMesh/meshes/Object52_0.mesh", - "NavMesh/entities/Object28_0.entity", - "NavMesh/meshes/Door01_0.mesh", - "NavMesh/entities/Object66_0.entity", - "NavMesh/entities/Object17_0.entity", - "NavMesh/meshes/Object40_0.mesh", - "NavMesh/meshes/Object61_0.mesh", - "NavMesh/entities/Object95_0.entity", - "NavMesh/meshes/Object49_0.mesh", - "NavMesh/entities/Object31_0.entity", - "NavMesh/entities/Door02_0.entity", - "NavMesh/meshes/Object89_0.mesh", - "NavMesh/entities/Object22_0.entity", - "NavMesh/meshes/Object36_0.mesh", - "NavMesh/meshes/Object90_0.mesh", - "NavMesh/entities/Object70_0.entity", - "NavMesh/meshes/Object08_0.mesh", - "NavMesh/entities/Object99_0.entity", - "NavMesh/entities/Object36_0.entity", - "NavMesh/meshes/Object91_0.mesh", - "NavMesh/meshes/Object16_0.mesh", - "NavMesh/entities/Object69_0.entity", - "NavMesh/meshes/Object21_0.mesh", - "NavMesh/meshes/Object77_0.mesh", - "NavMesh/meshes/Object31_0.mesh", - "NavMesh/entities/Object92_0.entity", - "NavMesh/meshes/Object27_0.mesh", - "NavMesh/entities/Object76_0.entity", - "NavMesh/entities/Object39_0.entity", - "NavMesh/entities/Object93_0.entity", - "NavMesh/entities/Object71_0.entity", - "NavMesh/meshes/Object83_0.mesh", - "NavMesh/entities/Object56_0.entity", - "NavMesh/entities/Object26_0.entity", - "NavMesh/meshes/Object72_0.mesh", - "NavMesh/meshes/Object51_0.mesh", - "NavMesh/meshes/Object92_0.mesh", + "NavMesh/entities/Object10_0.entity", "NavMesh/entities/Object08_0.entity", "NavMesh/meshes/Object07_0.mesh", - "NavMesh/meshes/Object74_0.mesh", - "NavMesh/entities/Object41_0.entity", - "NavMesh/meshes/Object53_0.mesh", - "NavMesh/meshes/Object58_0.mesh", - "NavMesh/entities/Object60_0.entity", - "NavMesh/entities/Object12_0.entity", - "NavMesh/entities/Object43_0.entity", - "NavMesh/entities/Object21_0.entity", - "NavMesh/meshes/Object42_0.mesh", - "NavMesh/entities/Object05_0.entity", - "NavMesh/entities/Object79_0.entity", - "NavMesh/entities/Object02_0.entity", - "NavMesh/entities/Door03_0.entity", - "NavMesh/meshes/Object19_0.mesh", - "NavMesh/meshes/Object46_0.mesh", - "NavMesh/entities/Object87_0.entity", - "NavMesh/entities/Object33_0.entity", - "NavMesh/entities/Object88_0.entity", - "NavMesh/entities/Object06_0.entity", - "NavMesh/entities/Object53_0.entity", - "NavMesh/meshes/Object95_0.mesh", - "NavMesh/entities/Object54_0.entity", - "NavMesh/meshes/Object94_0.mesh", - "NavMesh/entities/Object48_0.entity", - "NavMesh/meshes/Object66_0.mesh", - "NavMesh/meshes/Object79_0.mesh", - "NavMesh/entities/Object25_0.entity", - "NavMesh/meshes/Object100_0.mesh", - "NavMesh/entities/Object89_0.entity", - "NavMesh/meshes/Object102_0.mesh", - "NavMesh/entities/Object04_0.entity", - "NavMesh/meshes/Object50_0.mesh", - "NavMesh/meshes/Object41_0.mesh", - "NavMesh/meshes/Object26_0.mesh", - "NavMesh/entities/Object77_0.entity", - "NavMesh/entities/Object27_0.entity", - "NavMesh/meshes/Object48_0.mesh", - "NavMesh/meshes/Object73_0.mesh", - "NavMesh/meshes/Object99_0.mesh", - "NavMesh/meshes/Object78_0.mesh", "NavMesh/entities/Object19_0.entity", - "NavMesh/meshes/Object57_0.mesh", - "NavMesh/entities/Object65_0.entity", - "NavMesh/meshes/Object02_0.mesh", - "NavMesh/meshes/Object06_0.mesh", - "NavMesh/meshes/Object68_0.mesh", - "NavMesh/entities/Object51_0.entity", - "NavMesh/entities/Object85_0.entity", - "NavMesh/entities/Object30_0.entity", - "NavMesh/entities/Door04_0.entity", - "NavMesh/meshes/Object29_0.mesh", - "NavMesh/meshes/Object70_0.mesh", - "NavMesh/meshes/Object44_0.mesh", - "NavMesh/entities/Object74_0.entity", - "NavMesh/entities/Object67_0.entity", - "NavMesh/entities/Object10_0.entity", - "NavMesh/meshes/Object23_0.mesh", - "NavMesh/entities/Object29_0.entity", - "NavMesh/meshes/Object86_0.mesh", + "NavMesh/entities/Object17_0.entity", + "NavMesh/meshes/Object13_0.mesh", + "NavMesh/meshes/Object14_0.mesh", + "NavMesh/entities/Object12_0.entity", + "NavMesh/entities/Object20_0.entity", "NavMesh/meshes/Object01_0.mesh", "NavMesh/meshes/Object17_0.mesh", + "NavMesh/entities/Object07_0.entity", "NavMesh/entities/RootNode.entity", + "NavMesh/materials/NavMesh.material", "NavMesh/meshes/Object18_0.mesh", - "NavMesh/meshes/Object64_0.mesh", - "NavMesh/meshes/Object81_0.mesh", + "NavMesh/entities/Object05_0.entity", + "NavMesh/entities/Object02_0.entity", + "NavMesh/entities/Object09_0.entity", "NavMesh/meshes/Object22_0.mesh", - "NavMesh/meshes/Object33_0.mesh", - "NavMesh/entities/Object82_0.entity", + "NavMesh/meshes/Object19_0.mesh", + "NavMesh/entities/Object06_0.entity", "NavMesh/meshes/Object15_0.mesh", - "NavMesh/entities/Object62_0.entity", - "NavMesh/entities/Object58_0.entity", + "NavMesh/meshes/Object12_0.mesh", "NavMesh/meshes/Object11_0.mesh", - "NavMesh/entities/Object35_0.entity", - "NavMesh/entities/Object61_0.entity", - "NavMesh/entities/Object80_0.entity", - "NavMesh/meshes/Object76_0.mesh", - "NavMesh/entities/Object96_0.entity", - "NavMesh/entities/Object09_0.entity", + "NavMesh/entities/Object22_0.entity", "NavMesh/entities/Object13_0.entity", - "NavMesh/entities/Object73_0.entity", - "NavMesh/meshes/Object97_0.mesh", "NavMesh/entities/Object03_0.entity", - "NavMesh/meshes/Object85_0.mesh", - "NavMesh/meshes/Object45_0.mesh", - "NavMesh/entities/Object101_0.entity", - "NavMesh/meshes/Object67_0.mesh", + "NavMesh/meshes/Object10_0.mesh", + "NavMesh/entities/Object04_0.entity", "NavMesh/meshes/Object04_0.mesh", + "NavMesh/meshes/Object08_0.mesh", "NavMesh/meshes/Object03_0.mesh", - "NavMesh/meshes/Object30_0.mesh", - "NavMesh/meshes/Object101_0.mesh", - "NavMesh/entities/Object68_0.entity", + "NavMesh/entities/Object01_0.entity", + "NavMesh/meshes/Object16_0.mesh", "NavMesh/meshes/Object05_0.mesh", - "NavMesh/entities/Object72_0.entity", - "NavMesh/meshes/Object96_0.mesh", - "NavMesh/entities/Object86_0.entity", - "NavMesh/entities/Object32_0.entity", - "NavMesh/entities/Object75_0.entity", - "NavMesh/entities/Object45_0.entity", - "NavMesh/meshes/Object28_0.mesh", - "NavMesh/entities/Door05_0.entity", - "NavMesh/entities/Object40_0.entity", - "NavMesh/meshes/Object82_0.mesh", - "NavMesh/meshes/Object43_0.mesh", - "NavMesh/entities/Object37_0.entity", - "NavMesh/meshes/Door03_0.mesh", - "NavMesh/entities/broken_door_0.entity", - "NavMesh/meshes/Door04_0.mesh", - "NavMesh/entities/Object44_0.entity", - "NavMesh/entities/Object52_0.entity", - "NavMesh/meshes/Object62_0.mesh", - "NavMesh/meshes/Object13_0.mesh", - "NavMesh/entities/Object97_0.entity", - "NavMesh/meshes/Object14_0.mesh", - "NavMesh/entities/Object55_0.entity", - "NavMesh/meshes/Object60_0.mesh", - "NavMesh/materials/NavMesh.material", - "NavMesh/meshes/Object32_0.mesh", - "NavMesh/entities/Object64_0.entity", - "NavMesh/entities/Object49_0.entity", - "NavMesh/meshes/Object55_0.mesh", - "NavMesh/entities/Door01_0.entity", - "NavMesh/entities/Object47_0.entity", - "NavMesh/meshes/Object12_0.mesh", - "NavMesh/meshes/Object34_0.mesh", - "NavMesh/meshes/Object98_0.mesh", - "NavMesh/entities/Object42_0.entity", - "NavMesh/entities/Object78_0.entity", - "NavMesh/meshes/Object47_0.mesh", - "NavMesh/meshes/Object24_0.mesh", - "NavMesh/entities/Object57_0.entity", - "NavMesh/meshes/Object10_0.mesh", - "NavMesh/meshes/Object63_0.mesh", - "NavMesh/meshes/Object71_0.mesh", - "NavMesh/meshes/Object56_0.mesh", - "NavMesh/meshes/Object84_0.mesh", - "NavMesh/entities/Object50_0.entity", - "NavMesh/entities/Object102_0.entity", - "NavMesh/entities/Object83_0.entity", - "NavMesh/entities/Object15_0.entity", - "NavMesh/meshes/Door05_0.mesh", + "NavMesh/meshes/Object21_0.mesh", "NavMesh/entities/Object16_0.entity", - "NavMesh/entities/Object84_0.entity", "NavMesh/entities/Object11_0.entity", "NavMesh/meshes/Object20_0.mesh", "NavMesh/entities/Object18_0.entity", - "NavMesh/entities/Object46_0.entity", - "NavMesh/meshes/Door02_0.mesh", - "NavMesh/entities/Object07_0.entity", - "NavMesh/entities/Object59_0.entity", + "NavMesh/meshes/Object02_0.mesh", + "NavMesh/entities/Object21_0.entity", + "NavMesh/meshes/Object06_0.mesh", "NavMesh/meshes/Object09_0.mesh", - "NavMesh/entities/Object98_0.entity", - "NavMesh/meshes/Object65_0.mesh", - "NavMesh/meshes/Object69_0.mesh", - "NavMesh/meshes/Object75_0.mesh", - "NavMesh/entities/Object01_0.entity", - "NavMesh/binaries/1385084232_data.bin", - "NavMesh/binaries/1385086104_data.bin" + "NavMesh/entities/Object14_0.entity", + "NavMesh/entities/Object15_0.entity", + "NavMesh/binaries/1385113503_data.bin", + "NavMesh/meshes/Object37_0.mesh", + "NavMesh/meshes/Object25_0.mesh", + "NavMesh/meshes/Object35_0.mesh", + "NavMesh/meshes/Object23_0.mesh", + "NavMesh/entities/Object29_0.entity", + "NavMesh/meshes/Object32_0.mesh", + "NavMesh/entities/Object24_0.entity", + "NavMesh/meshes/Object29_0.mesh", + "NavMesh/meshes/Object33_0.mesh", + "NavMesh/entities/Object34_0.entity", + "NavMesh/entities/Object32_0.entity", + "NavMesh/entities/Object33_0.entity", + "NavMesh/meshes/Object34_0.mesh", + "NavMesh/entities/Object35_0.entity", + "NavMesh/meshes/Object38_0.mesh", + "NavMesh/entities/Object39_0.entity", + "NavMesh/entities/Object25_0.entity", + "NavMesh/meshes/Object24_0.mesh", + "NavMesh/entities/Object31_0.entity", + "NavMesh/meshes/Object36_0.mesh", + "NavMesh/entities/Object36_0.entity", + "NavMesh/entities/Object28_0.entity", + "NavMesh/meshes/Object40_0.mesh", + "NavMesh/meshes/Object30_0.mesh", + "NavMesh/entities/Object23_0.entity", + "NavMesh/meshes/Object31_0.mesh", + "NavMesh/meshes/Object26_0.mesh", + "NavMesh/meshes/Object39_0.mesh", + "NavMesh/meshes/Object28_0.mesh", + "NavMesh/meshes/Object27_0.mesh", + "NavMesh/entities/Object40_0.entity", + "NavMesh/entities/Object38_0.entity", + "NavMesh/entities/Object37_0.entity", + "NavMesh/entities/Object30_0.entity", + "NavMesh/entities/Object27_0.entity", + "NavMesh/entities/Object26_0.entity", + "NavMesh/binaries/1385113671_data.bin" ], "name": "NavMesh", "ref": "NavMesh/NavMesh.group" }, - "NavMesh/entities/Door01_0.entity": { + "NavMesh/entities/Object01_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Door01_0.mesh" + "meshRef": "NavMesh/meshes/Object01_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1339,13 +1201,13 @@ ] } }, - "name": "Door01", + "name": "Object01", "nodeType": "Mesh" }, - "NavMesh/entities/Door02_0.entity": { + "NavMesh/entities/Object02_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Door02_0.mesh" + "meshRef": "NavMesh/meshes/Object02_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1375,13 +1237,13 @@ ] } }, - "name": "Door02", + "name": "Object02", "nodeType": "Mesh" }, - "NavMesh/entities/Door03_0.entity": { + "NavMesh/entities/Object03_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Door03_0.mesh" + "meshRef": "NavMesh/meshes/Object03_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1411,13 +1273,13 @@ ] } }, - "name": "Door03", + "name": "Object03", "nodeType": "Mesh" }, - "NavMesh/entities/Door04_0.entity": { + "NavMesh/entities/Object04_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Door04_0.mesh" + "meshRef": "NavMesh/meshes/Object04_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1447,13 +1309,13 @@ ] } }, - "name": "Door04", + "name": "Object04", "nodeType": "Mesh" }, - "NavMesh/entities/Door05_0.entity": { + "NavMesh/entities/Object05_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Door05_0.mesh" + "meshRef": "NavMesh/meshes/Object05_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1483,13 +1345,13 @@ ] } }, - "name": "Door05", + "name": "Object05", "nodeType": "Mesh" }, - "NavMesh/entities/Door06_0.entity": { + "NavMesh/entities/Object06_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Door06_0.mesh" + "meshRef": "NavMesh/meshes/Object06_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1519,13 +1381,13 @@ ] } }, - "name": "Door06", + "name": "Object06", "nodeType": "Mesh" }, - "NavMesh/entities/Object01_0.entity": { + "NavMesh/entities/Object07_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object01_0.mesh" + "meshRef": "NavMesh/meshes/Object07_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1555,13 +1417,13 @@ ] } }, - "name": "Object01", + "name": "Object07", "nodeType": "Mesh" }, - "NavMesh/entities/Object02_0.entity": { + "NavMesh/entities/Object08_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object02_0.mesh" + "meshRef": "NavMesh/meshes/Object08_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1591,13 +1453,13 @@ ] } }, - "name": "Object02", + "name": "Object08", "nodeType": "Mesh" }, - "NavMesh/entities/Object03_0.entity": { + "NavMesh/entities/Object09_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object03_0.mesh" + "meshRef": "NavMesh/meshes/Object09_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1627,13 +1489,13 @@ ] } }, - "name": "Object03", + "name": "Object09", "nodeType": "Mesh" }, - "NavMesh/entities/Object04_0.entity": { + "NavMesh/entities/Object10_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object04_0.mesh" + "meshRef": "NavMesh/meshes/Object10_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1663,13 +1525,13 @@ ] } }, - "name": "Object04", + "name": "Object10", "nodeType": "Mesh" }, - "NavMesh/entities/Object05_0.entity": { + "NavMesh/entities/Object11_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object05_0.mesh" + "meshRef": "NavMesh/meshes/Object11_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1699,13 +1561,13 @@ ] } }, - "name": "Object05", + "name": "Object11", "nodeType": "Mesh" }, - "NavMesh/entities/Object06_0.entity": { + "NavMesh/entities/Object12_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object06_0.mesh" + "meshRef": "NavMesh/meshes/Object12_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1735,13 +1597,13 @@ ] } }, - "name": "Object06", + "name": "Object12", "nodeType": "Mesh" }, - "NavMesh/entities/Object07_0.entity": { + "NavMesh/entities/Object13_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object07_0.mesh" + "meshRef": "NavMesh/meshes/Object13_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1771,13 +1633,13 @@ ] } }, - "name": "Object07", + "name": "Object13", "nodeType": "Mesh" }, - "NavMesh/entities/Object08_0.entity": { + "NavMesh/entities/Object14_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object08_0.mesh" + "meshRef": "NavMesh/meshes/Object14_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1807,13 +1669,13 @@ ] } }, - "name": "Object08", + "name": "Object14", "nodeType": "Mesh" }, - "NavMesh/entities/Object09_0.entity": { + "NavMesh/entities/Object15_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object09_0.mesh" + "meshRef": "NavMesh/meshes/Object15_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1843,13 +1705,13 @@ ] } }, - "name": "Object09", + "name": "Object15", "nodeType": "Mesh" }, - "NavMesh/entities/Object100_0.entity": { + "NavMesh/entities/Object16_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object100_0.mesh" + "meshRef": "NavMesh/meshes/Object16_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1879,13 +1741,13 @@ ] } }, - "name": "Object100", + "name": "Object16", "nodeType": "Mesh" }, - "NavMesh/entities/Object101_0.entity": { + "NavMesh/entities/Object17_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object101_0.mesh" + "meshRef": "NavMesh/meshes/Object17_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1915,13 +1777,13 @@ ] } }, - "name": "Object101", + "name": "Object17", "nodeType": "Mesh" }, - "NavMesh/entities/Object102_0.entity": { + "NavMesh/entities/Object18_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object102_0.mesh" + "meshRef": "NavMesh/meshes/Object18_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1951,13 +1813,13 @@ ] } }, - "name": "Object102", + "name": "Object18", "nodeType": "Mesh" }, - "NavMesh/entities/Object10_0.entity": { + "NavMesh/entities/Object19_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object10_0.mesh" + "meshRef": "NavMesh/meshes/Object19_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -1987,13 +1849,13 @@ ] } }, - "name": "Object10", + "name": "Object19", "nodeType": "Mesh" }, - "NavMesh/entities/Object11_0.entity": { + "NavMesh/entities/Object20_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object11_0.mesh" + "meshRef": "NavMesh/meshes/Object20_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2023,13 +1885,13 @@ ] } }, - "name": "Object11", + "name": "Object20", "nodeType": "Mesh" }, - "NavMesh/entities/Object12_0.entity": { + "NavMesh/entities/Object21_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object12_0.mesh" + "meshRef": "NavMesh/meshes/Object21_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2059,13 +1921,13 @@ ] } }, - "name": "Object12", + "name": "Object21", "nodeType": "Mesh" }, - "NavMesh/entities/Object13_0.entity": { + "NavMesh/entities/Object22_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object13_0.mesh" + "meshRef": "NavMesh/meshes/Object22_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2095,13 +1957,13 @@ ] } }, - "name": "Object13", + "name": "Object22", "nodeType": "Mesh" }, - "NavMesh/entities/Object14_0.entity": { + "NavMesh/entities/Object23_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object14_0.mesh" + "meshRef": "NavMesh/meshes/Object23_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2131,13 +1993,13 @@ ] } }, - "name": "Object14", + "name": "Object23", "nodeType": "Mesh" }, - "NavMesh/entities/Object15_0.entity": { + "NavMesh/entities/Object24_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object15_0.mesh" + "meshRef": "NavMesh/meshes/Object24_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2167,13 +2029,13 @@ ] } }, - "name": "Object15", + "name": "Object24", "nodeType": "Mesh" }, - "NavMesh/entities/Object16_0.entity": { + "NavMesh/entities/Object25_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object16_0.mesh" + "meshRef": "NavMesh/meshes/Object25_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2203,13 +2065,13 @@ ] } }, - "name": "Object16", + "name": "Object25", "nodeType": "Mesh" }, - "NavMesh/entities/Object17_0.entity": { + "NavMesh/entities/Object26_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object17_0.mesh" + "meshRef": "NavMesh/meshes/Object26_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2239,13 +2101,13 @@ ] } }, - "name": "Object17", + "name": "Object26", "nodeType": "Mesh" }, - "NavMesh/entities/Object18_0.entity": { + "NavMesh/entities/Object27_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object18_0.mesh" + "meshRef": "NavMesh/meshes/Object27_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2275,13 +2137,13 @@ ] } }, - "name": "Object18", + "name": "Object27", "nodeType": "Mesh" }, - "NavMesh/entities/Object19_0.entity": { + "NavMesh/entities/Object28_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object19_0.mesh" + "meshRef": "NavMesh/meshes/Object28_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2311,13 +2173,13 @@ ] } }, - "name": "Object19", + "name": "Object28", "nodeType": "Mesh" }, - "NavMesh/entities/Object20_0.entity": { + "NavMesh/entities/Object29_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object20_0.mesh" + "meshRef": "NavMesh/meshes/Object29_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2347,13 +2209,13 @@ ] } }, - "name": "Object20", + "name": "Object29", "nodeType": "Mesh" }, - "NavMesh/entities/Object21_0.entity": { + "NavMesh/entities/Object30_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object21_0.mesh" + "meshRef": "NavMesh/meshes/Object30_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2383,13 +2245,13 @@ ] } }, - "name": "Object21", + "name": "Object30", "nodeType": "Mesh" }, - "NavMesh/entities/Object22_0.entity": { + "NavMesh/entities/Object31_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object22_0.mesh" + "meshRef": "NavMesh/meshes/Object31_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2419,13 +2281,13 @@ ] } }, - "name": "Object22", + "name": "Object31", "nodeType": "Mesh" }, - "NavMesh/entities/Object23_0.entity": { + "NavMesh/entities/Object32_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object23_0.mesh" + "meshRef": "NavMesh/meshes/Object32_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2455,13 +2317,13 @@ ] } }, - "name": "Object23", + "name": "Object32", "nodeType": "Mesh" }, - "NavMesh/entities/Object24_0.entity": { + "NavMesh/entities/Object33_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object24_0.mesh" + "meshRef": "NavMesh/meshes/Object33_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2491,13 +2353,13 @@ ] } }, - "name": "Object24", + "name": "Object33", "nodeType": "Mesh" }, - "NavMesh/entities/Object25_0.entity": { + "NavMesh/entities/Object34_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object25_0.mesh" + "meshRef": "NavMesh/meshes/Object34_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2527,13 +2389,13 @@ ] } }, - "name": "Object25", + "name": "Object34", "nodeType": "Mesh" }, - "NavMesh/entities/Object26_0.entity": { + "NavMesh/entities/Object35_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object26_0.mesh" + "meshRef": "NavMesh/meshes/Object35_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2563,13 +2425,13 @@ ] } }, - "name": "Object26", + "name": "Object35", "nodeType": "Mesh" }, - "NavMesh/entities/Object27_0.entity": { + "NavMesh/entities/Object36_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object27_0.mesh" + "meshRef": "NavMesh/meshes/Object36_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2599,13 +2461,13 @@ ] } }, - "name": "Object27", + "name": "Object36", "nodeType": "Mesh" }, - "NavMesh/entities/Object28_0.entity": { + "NavMesh/entities/Object37_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object28_0.mesh" + "meshRef": "NavMesh/meshes/Object37_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2635,13 +2497,13 @@ ] } }, - "name": "Object28", + "name": "Object37", "nodeType": "Mesh" }, - "NavMesh/entities/Object29_0.entity": { + "NavMesh/entities/Object38_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object29_0.mesh" + "meshRef": "NavMesh/meshes/Object38_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2671,13 +2533,13 @@ ] } }, - "name": "Object29", + "name": "Object38", "nodeType": "Mesh" }, - "NavMesh/entities/Object30_0.entity": { + "NavMesh/entities/Object39_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object30_0.mesh" + "meshRef": "NavMesh/meshes/Object39_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2707,13 +2569,13 @@ ] } }, - "name": "Object30", + "name": "Object39", "nodeType": "Mesh" }, - "NavMesh/entities/Object31_0.entity": { + "NavMesh/entities/Object40_0.entity": { "components": { "meshData": { - "meshRef": "NavMesh/meshes/Object31_0.mesh" + "meshRef": "NavMesh/meshes/Object40_0.mesh" }, "meshRenderer": { "castShadows": true, @@ -2743,27 +2605,14 @@ ] } }, - "name": "Object31", + "name": "Object40", "nodeType": "Mesh" }, - "NavMesh/entities/Object32_0.entity": { + "NavMesh/entities/RootNode.entity": { "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object32_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", "rotation": [ - -89.99999999999999, + 0.0, -0.0, 0.0 ], @@ -2779,6230 +2628,111 @@ ] } }, - "name": "Object32", - "nodeType": "Mesh" + "name": "NavMesh", + "nodeType": "Null" }, - "NavMesh/entities/Object33_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object33_0.mesh" + "NavMesh/materials/NavMesh.material": { + "blendState": { + "blendDst": "OneMinusSrcAlphaFactor", + "blendEquation": "AddEquation", + "blendSrc": "SrcAlphaFactor", + "blending": "CustomBlending" + }, + "cullState": { + "cullFace": "Back", + "enabled": true, + "frontFace": "CCW" + }, + "depthState": { + "enabled": true, + "write": true + }, + "name": "NavMesh", + "ref": "NavMesh/materials/NavMesh.material", + "renderQueue": 2000, + "shaderRef": "GOO_ENGINE_SHADERS/uber", + "texturesMapping": {}, + "type": "Phong", + "uniforms": { + "discardThreshold": { + "enabled": false, + "value": 0 }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false + "fresnel": { + "enabled": true, + "value": 0 }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 + "materialAmbient": { + "enabled": true, + "value": [ + 0, + 0, + 0, + 1 ] - } - }, - "name": "Object33", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object34_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object34_0.mesh" }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false + "materialDiffuse": { + "enabled": true, + "value": [ + 0, + 0, + 0, + 1 + ] }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 + "materialEmissive": { + "enabled": true, + "value": [ + 0, + 0, + 0, + 1 ] - } - }, - "name": "Object34", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object35_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object35_0.mesh" }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false + "materialSpecular": { + "enabled": true, + "value": [ + 0, + 0, + 0, + 1 + ] }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object35", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object36_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object36_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object36", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object37_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object37_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object37", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object38_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object38_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object38", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object39_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object39_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object39", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object40_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object40_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false + "materialSpecularPower": { + "enabled": true, + "value": 2.000000020657396 }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object40", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object41_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object41_0.mesh" + "normalMultiplier": { + "enabled": true, + "value": 1 }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false + "opacity": { + "enabled": true, + "value": 0 }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] + "reflectivity": { + "enabled": true, + "value": 0 } - }, - "name": "Object41", - "nodeType": "Mesh" + } }, - "NavMesh/entities/Object42_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object42_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object42", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object43_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object43_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object43", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object44_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object44_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object44", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object45_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object45_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object45", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object46_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object46_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object46", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object47_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object47_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object47", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object48_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object48_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object48", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object49_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object49_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object49", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object50_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object50_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object50", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object51_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object51_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object51", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object52_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object52_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object52", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object53_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object53_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object53", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object54_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object54_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object54", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object55_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object55_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object55", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object56_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object56_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object56", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object57_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object57_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object57", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object58_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object58_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object58", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object59_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object59_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object59", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object60_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object60_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object60", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object61_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object61_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object61", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object62_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object62_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object62", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object63_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object63_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object63", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object64_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object64_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object64", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object65_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object65_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object65", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object66_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object66_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object66", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object67_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object67_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object67", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object68_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object68_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object68", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object69_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object69_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object69", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object70_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object70_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object70", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object71_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object71_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object71", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object72_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object72_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object72", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object73_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object73_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object73", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object74_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object74_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object74", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object75_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object75_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object75", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object76_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object76_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object76", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object77_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object77_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object77", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object78_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object78_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object78", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object79_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object79_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object79", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object80_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object80_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object80", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object81_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object81_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object81", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object82_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object82_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object82", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object83_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object83_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object83", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object84_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object84_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object84", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object85_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object85_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object85", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object86_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object86_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object86", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object87_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object87_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object87", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object88_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object88_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object88", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object89_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object89_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object89", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object90_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object90_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object90", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object91_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object91_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object91", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object92_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object92_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object92", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object93_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object93_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object93", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object94_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object94_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object94", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object95_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object95_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object95", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object96_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object96_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object96", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object97_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object97_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object97", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object98_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object98_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object98", - "nodeType": "Mesh" - }, - "NavMesh/entities/Object99_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/Object99_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "Object99", - "nodeType": "Mesh" - }, - "NavMesh/entities/RootNode.entity": { - "components": { - "transform": { - "rotation": [ - 0.0, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "NavMesh", - "nodeType": "Null" - }, - "NavMesh/entities/broken_door_0.entity": { - "components": { - "meshData": { - "meshRef": "NavMesh/meshes/broken_door_0.mesh" - }, - "meshRenderer": { - "castShadows": true, - "cullMode": "Dynamic", - "materialRefs": [ - "NavMesh/materials/NavMesh.material" - ], - "receiveShadows": true, - "reflectable": false - }, - "transform": { - "parentRef": "NavMesh/entities/RootNode.entity", - "rotation": [ - -89.99999999999999, - -0.0, - 0.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ], - "translation": [ - 0.0, - 0.0, - 0.0 - ] - } - }, - "name": "broken door", - "nodeType": "Mesh" - }, - "NavMesh/materials/NavMesh.material": { - "blendState": { - "blendDst": "OneMinusSrcAlphaFactor", - "blendEquation": "AddEquation", - "blendSrc": "SrcAlphaFactor", - "blending": "CustomBlending" - }, - "cullState": { - "cullFace": "Back", - "enabled": false, - "frontFace": "CCW" - }, - "depthState": { - "enabled": true, - "write": true - }, - "name": "NavMesh", - "ref": "NavMesh/materials/NavMesh.material", - "renderQueue": 2000, - "shaderRef": "GOO_ENGINE_SHADERS/uber", - "texturesMapping": {}, - "type": "Phong", - "uniforms": { - "discardThreshold": { - "enabled": false, - "value": 0 - }, - "fresnel": { - "enabled": true, - "value": 0 - }, - "materialAmbient": { - "enabled": true, - "value": [ - 0, - 0, - 0, - 1 - ] - }, - "materialDiffuse": { - "enabled": true, - "value": [ - 0, - 0, - 0, - 1 - ] - }, - "materialEmissive": { - "enabled": true, - "value": [ - 0, - 0, - 0, - 1 - ] - }, - "materialSpecular": { - "enabled": true, - "value": [ - 0, - 0, - 0, - 1 - ] - }, - "materialSpecularPower": { - "enabled": true, - "value": 2.000000020657396 - }, - "normalMultiplier": { - "enabled": true, - "value": 1 - }, - "opacity": { - "enabled": true, - "value": 0 - }, - "reflectivity": { - "enabled": true, - "value": 0 - } - } - }, - "NavMesh/meshes/Door01_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 22.95733642578125, - 7.893579483032227, - 1.131726861000061 - ], - "min": [ - 19.680028915405273, - 7.5136260986328125, - -4.859990440309048e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 6184, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 5936, - 6, - "uint8" - ], - "name": "Door01", - "normals": [ - 6016, - 18, - "float32" - ], - "tangents": [ - 6088, - 24, - "float32" - ], - "textureCoords": [ - [ - 6280, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 5944, - 18, - "float32" - ] - }, - "NavMesh/meshes/Door02_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 22.92654037475586, - 29.232513427734375, - 1.1317274570465088 - ], - "min": [ - 19.70278549194336, - 28.844011306762695, - -4.764809273183346e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 42740, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 42492, - 6, - "uint8" - ], - "name": "Door02", - "normals": [ - 42572, - 18, - "float32" - ], - "tangents": [ - 42644, - 24, - "float32" - ], - "textureCoords": [ - [ - 42836, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 42500, - 18, - "float32" - ] - }, - "NavMesh/meshes/Door03_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -9.581741333007812, - 40.123619079589844, - 1.131728172302246 - ], - "min": [ - -9.945653915405273, - 36.99143981933594, - -4.731002263724804e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 34124, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 33876, - 6, - "uint8" - ], - "name": "Door03", - "normals": [ - 33956, - 18, - "float32" - ], - "tangents": [ - 34028, - 24, - "float32" - ], - "textureCoords": [ - [ - 34220, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 33884, - 18, - "float32" - ] - }, - "NavMesh/meshes/Door04_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -30.93282699584961, - 24.359779357910156, - 1.1317275762557983 - ], - "min": [ - -31.308387756347656, - 21.047622680664062, - -4.800688475370407e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 34516, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 34268, - 6, - "uint8" - ], - "name": "Door04", - "normals": [ - 34348, - 18, - "float32" - ], - "tangents": [ - 34420, - 24, - "float32" - ], - "textureCoords": [ - [ - 34612, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 34276, - 18, - "float32" - ] - }, - "NavMesh/meshes/Door05_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -9.558021545410156, - -16.414703369140625, - 1.131725788116455 - ], - "min": [ - -9.930793762207031, - -19.707353591918945, - -4.978710785508156e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 41760, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 41512, - 6, - "uint8" - ], - "name": "Door05", - "normals": [ - 41592, - 18, - "float32" - ], - "tangents": [ - 41664, - 24, - "float32" - ], - "textureCoords": [ - [ - 41856, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 41520, - 18, - "float32" - ] - }, - "NavMesh/meshes/Door06_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -13.992505073547363, - -33.52833557128906, - 1.1317250728607178 - ], - "min": [ - -17.03469467163086, - -33.810394287109375, - -5.040504038333893e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 3768, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 3520, - 6, - "uint8" - ], - "name": "Door06", - "normals": [ - 3600, - 18, - "float32" - ], - "tangents": [ - 3672, - 24, - "float32" - ], - "textureCoords": [ - [ - 3864, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 3528, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object01_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 57.0185546875, - -36.574317932128906, - -5.0525879487395287e-05 - ], - "min": [ - 32.81049346923828, - -61.17765808105469, - -5.160132423043251e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 24920, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 24672, - 6, - "uint8" - ], - "name": "Object01", - "normals": [ - 24752, - 18, - "float32" - ], - "tangents": [ - 24824, - 24, - "float32" - ], - "textureCoords": [ - [ - 25016, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 24680, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object02_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 57.0185546875, - -9.705116271972656, - -4.935101605951786e-05 - ], - "min": [ - 33.461090087890625, - -36.63518524169922, - -5.0528207793831825e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 21784, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 21536, - 6, - "uint8" - ], - "name": "Object02", - "normals": [ - 21616, - 18, - "float32" - ], - "tangents": [ - 21688, - 24, - "float32" - ], - "textureCoords": [ - [ - 21880, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 21544, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object03_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 57.0185546875, - 5.742794036865234, - -4.867580719292164e-05 - ], - "min": [ - 33.579139709472656, - -10.013816833496094, - -4.9364520236849785e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 31380, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 31132, - 6, - "uint8" - ], - "name": "Object03", - "normals": [ - 31212, - 18, - "float32" - ], - "tangents": [ - 31284, - 24, - "float32" - ], - "textureCoords": [ - [ - 31476, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 31140, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object04_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 57.0185546875, - 32.06681823730469, - -4.7525158151984215e-05 - ], - "min": [ - 34.53754806518555, - 4.887641906738281, - -4.8713525757193565e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 30988, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 30740, - 6, - "uint8" - ], - "name": "Object04", - "normals": [ - 30820, - 18, - "float32" - ], - "tangents": [ - 30892, - 24, - "float32" - ], - "textureCoords": [ - [ - 31084, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 30748, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object05_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 57.0185546875, - 54.44654083251953, - -4.654703661799431e-05 - ], - "min": [ - 34.29576110839844, - 30.882781982421875, - -4.7576846554875374e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 32556, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 32308, - 6, - "uint8" - ], - "name": "Object05", - "normals": [ - 32388, - 18, - "float32" - ], - "tangents": [ - 32460, - 24, - "float32" - ], - "textureCoords": [ - [ - 32652, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 32316, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object06_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 35.08671951293945, - 54.44654083251953, - -4.654703661799431e-05 - ], - "min": [ - 7.668964385986328, - 31.83917236328125, - -4.753516986966133e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 22300, - 36, - "float32" - ], - "indexLengths": [ - 9 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 21928, - 9, - "uint8" - ], - "name": "Object06", - "normals": [ - 22048, - 27, - "float32" - ], - "tangents": [ - 22156, - 36, - "float32" - ], - "textureCoords": [ - [ - 22444, - 18, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 9, - "vertices": [ - 21940, - 27, - "float32" - ] - }, - "NavMesh/meshes/Object07_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 35.08671951293945, - 32.06681823730469, - -4.7525158151984215e-05 - ], - "min": [ - 32.1568717956543, - 4.887641906738281, - -4.8713525757193565e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 13756, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 13508, - 6, - "uint8" - ], - "name": "Object07", - "normals": [ - 13588, - 18, - "float32" - ], - "tangents": [ - 13660, - 24, - "float32" - ], - "textureCoords": [ - [ - 13852, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 13516, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object08_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 33.579139709472656, - -9.705116271972656, - -4.935101605951786e-05 - ], - "min": [ - 30.90521240234375, - -36.63518524169922, - -5.0528207793831825e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 8536, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 8288, - 6, - "uint8" - ], - "name": "Object08", - "normals": [ - 8368, - 18, - "float32" - ], - "tangents": [ - 8440, - 24, - "float32" - ], - "textureCoords": [ - [ - 8632, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 8296, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object09_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 33.461090087890625, - -36.51940155029297, - -5.052308551967144e-05 - ], - "min": [ - 6.7989654541015625, - -61.17765808105469, - -5.160132423043251e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 43256, - 36, - "float32" - ], - "indexLengths": [ - 9 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 42884, - 9, - "uint8" - ], - "name": "Object09", - "normals": [ - 43004, - 27, - "float32" - ], - "tangents": [ - 43112, - 36, - "float32" - ], - "textureCoords": [ - [ - 43400, - 18, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 9, - "vertices": [ - 42896, - 27, - "float32" - ] - }, - "NavMesh/meshes/Object100_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -22.516834259033203, - 44.09565734863281, - 1.1317284107208252 - ], - "min": [ - -30.915119171142578, - 31.911624908447266, - 1.131727695465088 - ], - "type": "BoundingBox" - }, - "colors": [ - 18320, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 18072, - 6, - "uint8" - ], - "name": "Object100", - "normals": [ - 18152, - 18, - "float32" - ], - "tangents": [ - 18224, - 24, - "float32" - ], - "textureCoords": [ - [ - 18416, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 18080, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object101_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -17.0291748046875, - 44.09565734863281, - 1.1317284107208252 - ], - "min": [ - -30.915119171142578, - 31.91232681274414, - 1.131727695465088 - ], - "type": "BoundingBox" - }, - "colors": [ - 32164, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 31916, - 6, - "uint8" - ], - "name": "Object101", - "normals": [ - 31996, - 18, - "float32" - ], - "tangents": [ - 32068, - 24, - "float32" - ], - "textureCoords": [ - [ - 32260, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 31924, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object102_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -19.388011932373047, - 31.912586212158203, - 1.131727695465088 - ], - "min": [ - -22.518360137939453, - 31.494958877563477, - 1.1317275762557983 - ], - "type": "BoundingBox" - }, - "colors": [ - 18712, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 18464, - 6, - "uint8" - ], - "name": "Object102", - "normals": [ - 18544, - 18, - "float32" - ], - "tangents": [ - 18616, - 24, - "float32" - ], - "textureCoords": [ - [ - 18808, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 18472, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object10_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 34.53754806518555, - 4.887641906738281, - -4.8713525757193565e-05 - ], - "min": [ - 6.813549041748047, - -9.705116271972656, - -4.935101605951786e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 40120, - 36, - "float32" - ], - "indexLengths": [ - 9 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 39748, - 9, - "uint8" - ], - "name": "Object10", - "normals": [ - 39868, - 27, - "float32" - ], - "tangents": [ - 39976, - 36, - "float32" - ], - "textureCoords": [ - [ - 40264, - 18, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 9, - "vertices": [ - 39760, - 27, - "float32" - ] - }, - "NavMesh/meshes/Object11_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 8.900352478027344, - 54.44654083251953, - -4.654703661799431e-05 - ], - "min": [ - -6.9772796630859375, - 31.83917236328125, - -4.753516986966133e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 28444, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 28196, - 6, - "uint8" - ], - "name": "Object11", - "normals": [ - 28276, - 18, - "float32" - ], - "tangents": [ - 28348, - 24, - "float32" - ], - "textureCoords": [ - [ - 28540, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 28204, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object12_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 7.71697998046875, - 47.136680603027344, - -4.686648026108742e-05 - ], - "min": [ - -6.9772796630859375, - 4.871795654296875, - -4.871399141848087e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 37576, - 36, - "float32" - ], - "indexLengths": [ - 9 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 37204, - 9, - "uint8" - ], - "name": "Object12", - "normals": [ - 37324, - 27, - "float32" - ], - "tangents": [ - 37432, - 36, - "float32" - ], - "textureCoords": [ - [ - 37720, - 18, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 9, - "vertices": [ - 37216, - 27, - "float32" - ] - }, - "NavMesh/meshes/Object13_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 7.71697998046875, - 9.27435302734375, - -4.852144047617912e-05 - ], - "min": [ - -6.973289489746094, - -9.679679870605469, - -4.9350084736943245e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 35104, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 34856, - 6, - "uint8" - ], - "name": "Object13", - "normals": [ - 34936, - 18, - "float32" - ], - "tangents": [ - 35008, - 24, - "float32" - ], - "textureCoords": [ - [ - 35200, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 34864, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object14_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 6.813549041748047, - -9.621566772460938, - -4.93472907692194e-05 - ], - "min": [ - -6.973289489746094, - -36.51940155029297, - -5.052308551967144e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 35620, - 36, - "float32" - ], - "indexLengths": [ - 9 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 35248, - 9, - "uint8" - ], - "name": "Object14", - "normals": [ - 35368, - 27, - "float32" - ], - "tangents": [ - 35476, - 36, - "float32" - ], - "textureCoords": [ - [ - 35764, - 18, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 9, - "vertices": [ - 35260, - 27, - "float32" - ] - }, - "NavMesh/meshes/Object15_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 7.667087554931641, - -36.36244201660156, - -5.051633343100548e-05 - ], - "min": [ - -8.020153045654297, - -61.17765808105469, - -5.160132423043251e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 28052, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 27804, - 6, - "uint8" - ], - "name": "Object15", - "normals": [ - 27884, - 18, - "float32" - ], - "tangents": [ - 27956, - 24, - "float32" - ], - "textureCoords": [ - [ - 28148, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 27812, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object16_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.811058044433594, - 54.44654083251953, - -4.654703661799431e-05 - ], - "min": [ - -33.68232727050781, - 47.050750732421875, - -4.687020555138588e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 9124, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 8876, - 6, - "uint8" - ], - "name": "Object16", - "normals": [ - 8956, - 18, - "float32" - ], - "tangents": [ - 9028, - 24, - "float32" - ], - "textureCoords": [ - [ - 9220, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 8884, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object17_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.916984558105469, - 9.27435302734375, - -4.852144047617912e-05 - ], - "min": [ - -33.881690979003906, - -9.686752319335938, - -4.93503175675869e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 25312, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 25064, - 6, - "uint8" - ], - "name": "Object17", - "normals": [ - 25144, - 18, - "float32" - ], - "tangents": [ - 25216, - 24, - "float32" - ], - "textureCoords": [ - [ - 25408, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 25072, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object18_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.944538116455078, - -36.36244201660156, - -5.051633343100548e-05 - ], - "min": [ - -34.020713806152344, - -61.17765808105469, - -5.160132423043251e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 25828, - 36, - "float32" - ], - "indexLengths": [ - 9 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 25456, - 9, - "uint8" - ], - "name": "Object18", - "normals": [ - 25576, - 27, - "float32" - ], - "tangents": [ - 25684, - 36, - "float32" - ], - "textureCoords": [ - [ - 25972, - 18, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 9, - "vertices": [ - 25468, - 27, - "float32" - ] - }, - "NavMesh/meshes/Object19_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -33.467926025390625, - 54.44654083251953, - -4.654703661799431e-05 - ], - "min": [ - -57.802703857421875, - 46.788726806640625, - -4.688161425292492e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 15128, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 14880, - 6, - "uint8" - ], - "name": "Object19", - "normals": [ - 14960, - 18, - "float32" - ], - "tangents": [ - 15032, - 24, - "float32" - ], - "textureCoords": [ - [ - 15224, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 14888, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object20_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -33.68232727050781, - 47.050750732421875, - -4.687020555138588e-05 - ], - "min": [ - -57.802703857421875, - 9.237152099609375, - -4.85230702906847e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 42276, - 36, - "float32" - ], - "indexLengths": [ - 9 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 41904, - 9, - "uint8" - ], - "name": "Object20", - "normals": [ - 42024, - 27, - "float32" - ], - "tangents": [ - 42132, - 36, - "float32" - ], - "textureCoords": [ - [ - 42420, - 18, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 9, - "vertices": [ - 41916, - 27, - "float32" - ] - }, - "NavMesh/meshes/Object21_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -33.77043914794922, - 9.427955627441406, - -4.851468838751316e-05 - ], - "min": [ - -57.802703857421875, - -13.174026489257812, - -4.9502821639180183e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 9516, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 9268, - 6, - "uint8" - ], - "name": "Object21", - "normals": [ - 9348, - 18, - "float32" - ], - "tangents": [ - 9420, - 24, - "float32" - ], - "textureCoords": [ - [ - 9612, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 9276, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object22_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -33.77043914794922, - -9.686752319335938, - -4.93503175675869e-05 - ], - "min": [ - -57.802703857421875, - -36.39775848388672, - -5.0517963245511055e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 27268, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 27020, - 6, - "uint8" - ], - "name": "Object22", - "normals": [ - 27100, - 18, - "float32" - ], - "tangents": [ - 27172, - 24, - "float32" - ], - "textureCoords": [ - [ - 27364, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 27028, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object23_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -33.467926025390625, - -35.77601623535156, - -5.04904892295599e-05 - ], - "min": [ - -57.802703857421875, - -61.17765808105469, - -5.160132423043251e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 24332, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 24084, - 6, - "uint8" - ], - "name": "Object23", - "normals": [ - 24164, - 18, - "float32" - ], - "tangents": [ - 24236, - 24, - "float32" - ], - "textureCoords": [ - [ - 24428, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 24092, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object24_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 21.431930541992188, - 31.953445434570312, - -4.7530047595500946e-05 - ], - "min": [ - 7.668964385986328, - 29.232513427734375, - -4.7647859901189804e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 39604, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 39356, - 6, - "uint8" - ], - "name": "Object24", - "normals": [ - 39436, - 18, - "float32" - ], - "tangents": [ - 39508, - 24, - "float32" - ], - "textureCoords": [ - [ - 39700, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 39364, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object25_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 35.08671951293945, - 32.06681823730469, - -4.7525158151984215e-05 - ], - "min": [ - 21.431930541992188, - 29.202392578125, - -4.765018820762634e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 1616, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 1368, - 6, - "uint8" - ], - "name": "Object25", - "normals": [ - 1448, - 18, - "float32" - ], - "tangents": [ - 1520, - 24, - "float32" - ], - "textureCoords": [ - [ - 1712, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 1376, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object26_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 34.53754806518555, - 7.5136260986328125, - -4.859874024987221e-05 - ], - "min": [ - 21.765317916870117, - 4.880096435546875, - -4.8713525757193565e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 19888, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 19640, - 6, - "uint8" - ], - "name": "Object26", - "normals": [ - 19720, - 18, - "float32" - ], - "tangents": [ - 19792, - 24, - "float32" - ], - "textureCoords": [ - [ - 19984, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 19648, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object27_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 21.765317916870117, - 7.515083312988281, - -4.859874024987221e-05 - ], - "min": [ - 7.71697998046875, - 4.871795654296875, - -4.871399141848087e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 10692, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 10444, - 6, - "uint8" - ], - "name": "Object27", - "normals": [ - 10524, - 18, - "float32" - ], - "tangents": [ - 10596, - 24, - "float32" - ], - "textureCoords": [ - [ - 10788, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 10452, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object28_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 10.492820739746094, - 31.83917236328125, - -4.753516986966133e-05 - ], - "min": [ - 7.668964385986328, - 4.871795654296875, - -4.871399141848087e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 33144, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 32896, - 6, - "uint8" - ], - "name": "Object28", - "normals": [ - 32976, - 18, - "float32" - ], - "tangents": [ - 33048, - 24, - "float32" - ], - "textureCoords": [ - [ - 33240, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 32904, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object29_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 33.579139709472656, - -9.679679870605469, - -4.9350084736943245e-05 - ], - "min": [ - 6.813549041748047, - -12.086894989013672, - -4.9454858526587486e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 23156, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 22908, - 6, - "uint8" - ], - "name": "Object29", - "normals": [ - 22988, - 18, - "float32" - ], - "tangents": [ - 23060, - 24, - "float32" - ], - "textureCoords": [ - [ - 23252, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 22916, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object30_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 9.21615982055664, - -9.679679870605469, - -4.9350084736943245e-05 - ], - "min": [ - 6.7989654541015625, - -36.51940155029297, - -5.052308551967144e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 31772, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 31524, - 6, - "uint8" - ], - "name": "Object30", - "normals": [ - 31604, - 18, - "float32" - ], - "tangents": [ - 31676, - 24, - "float32" - ], - "textureCoords": [ - [ - 31868, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 31532, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object31_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 33.461090087890625, - -33.80415344238281, - -5.040504038333893e-05 - ], - "min": [ - 20.127182006835938, - -36.63518524169922, - -5.0528207793831825e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 10300, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 10052, - 6, - "uint8" - ], - "name": "Object31", - "normals": [ - 10132, - 18, - "float32" - ], - "tangents": [ - 10204, - 24, - "float32" - ], - "textureCoords": [ - [ - 10396, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 10060, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object32_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 20.127182006835938, - -33.80377197265625, - -5.0404807552695274e-05 - ], - "min": [ - 6.7989654541015625, - -36.57728576660156, - -5.052564665675163e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 36280, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 36032, - 6, - "uint8" - ], - "name": "Object32", - "normals": [ - 36112, - 18, - "float32" - ], - "tangents": [ - 36184, - 24, - "float32" - ], - "textureCoords": [ - [ - 36376, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 36040, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object33_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.944538116455078, - -17.907384872436523, - -4.970957525074482e-05 - ], - "min": [ - -9.5606689453125, - -36.36244201660156, - -5.051633343100548e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 27660, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 27412, - 6, - "uint8" - ], - "name": "Object33", - "normals": [ - 27492, - 18, - "float32" - ], - "tangents": [ - 27564, - 24, - "float32" - ], - "textureCoords": [ - [ - 27756, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 27420, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object34_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.964576721191406, - -9.621566772460938, - -4.93472907692194e-05 - ], - "min": [ - -9.558021545410156, - -17.907384872436523, - -4.970957525074482e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 38040, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 37792, - 6, - "uint8" - ], - "name": "Object34", - "normals": [ - 37872, - 18, - "float32" - ], - "tangents": [ - 37944, - 24, - "float32" - ], - "textureCoords": [ - [ - 38136, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 37800, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object35_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.973289489746094, - -9.621566772460938, - -4.93472907692194e-05 - ], - "min": [ - -33.77043914794922, - -12.126541137695312, - -4.945672117173672e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 2596, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 2348, - 6, - "uint8" - ], - "name": "Object35", - "normals": [ - 2428, - 18, - "float32" - ], - "tangents": [ - 2500, - 24, - "float32" - ], - "textureCoords": [ - [ - 2692, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 2356, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object36_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -31.233993530273438, - -9.686752319335938, - -4.93503175675869e-05 - ], - "min": [ - -34.020713806152344, - -36.39775848388672, - -5.0517963245511055e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 7948, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 7700, - 6, - "uint8" - ], - "name": "Object36", - "normals": [ - 7780, - 18, - "float32" - ], - "tangents": [ - 7852, - 24, - "float32" - ], - "textureCoords": [ - [ - 8044, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 7708, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object37_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -15.330879211425781, - -33.810394287109375, - -5.040504038333893e-05 - ], - "min": [ - -34.020713806152344, - -36.39775848388672, - -5.0517963245511055e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 1028, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 780, - 6, - "uint8" - ], - "name": "Object37", - "normals": [ - 860, - 18, - "float32" - ], - "tangents": [ - 932, - 24, - "float32" - ], - "textureCoords": [ - [ - 1124, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 788, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object38_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.944538116455078, - -33.810394287109375, - -5.040504038333893e-05 - ], - "min": [ - -15.330879211425781, - -36.372901916503906, - -5.051656626164913e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 4160, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 3912, - 6, - "uint8" - ], - "name": "Object38", - "normals": [ - 3992, - 18, - "float32" - ], - "tangents": [ - 4064, - 24, - "float32" - ], - "textureCoords": [ - [ - 4256, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 3920, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object39_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.916984558105469, - 11.818038940429688, - -4.841014742851257e-05 - ], - "min": [ - -33.881690979003906, - 9.237152099609375, - -4.85230702906847e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 2008, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 1760, - 6, - "uint8" - ], - "name": "Object39", - "normals": [ - 1840, - 18, - "float32" - ], - "tangents": [ - 1912, - 24, - "float32" - ], - "textureCoords": [ - [ - 2104, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 1768, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object40_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.916984558105469, - 38.512237548828125, - -4.724343307316303e-05 - ], - "min": [ - -9.581741333007812, - 9.27435302734375, - -4.852144047617912e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 6576, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 6328, - 6, - "uint8" - ], - "name": "Object40", - "normals": [ - 6408, - 18, - "float32" - ], - "tangents": [ - 6480, - 24, - "float32" - ], - "textureCoords": [ - [ - 6672, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 6336, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object41_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.9635467529296875, - 47.136680603027344, - -4.686648026108742e-05 - ], - "min": [ - -9.581741333007812, - 38.512237548828125, - -4.724343307316303e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 19496, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 19248, - 6, - "uint8" - ], - "name": "Object41", - "normals": [ - 19328, - 18, - "float32" - ], - "tangents": [ - 19400, - 24, - "float32" - ], - "textureCoords": [ - [ - 19592, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 19256, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object42_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.9772796630859375, - 47.136680603027344, - -4.686648026108742e-05 - ], - "min": [ - -33.68232727050781, - 44.51776123046875, - -4.698103293776512e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 14736, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 14488, - 6, - "uint8" - ], - "name": "Object42", - "normals": [ - 14568, - 18, - "float32" - ], - "tangents": [ - 14640, - 24, - "float32" - ], - "textureCoords": [ - [ - 14832, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 14496, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object43_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -31.308387756347656, - 47.050750732421875, - -4.687020555138588e-05 - ], - "min": [ - -33.812583923339844, - 22.345291137695312, - -4.795007407665253e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 33732, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 33484, - 6, - "uint8" - ], - "name": "Object43", - "normals": [ - 33564, - 18, - "float32" - ], - "tangents": [ - 33636, - 24, - "float32" - ], - "textureCoords": [ - [ - 33828, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 33492, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object44_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -31.308387756347656, - 22.345291137695312, - -4.795007407665253e-05 - ], - "min": [ - -33.881690979003906, - 9.237152099609375, - -4.85230702906847e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 23940, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 23692, - 6, - "uint8" - ], - "name": "Object44", - "normals": [ - 23772, - 18, - "float32" - ], - "tangents": [ - 23844, - 24, - "float32" - ], - "textureCoords": [ - [ - 24036, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 23700, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object45_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 31.79119110107422, - 17.896699905395508, - 1.1317269802093506 - ], - "min": [ - 24.018016815185547, - 7.906352996826172, - 1.131726861000061 - ], - "type": "BoundingBox" - }, - "colors": [ - 29816, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 29568, - 6, - "uint8" - ], - "name": "Object45", - "normals": [ - 29648, - 18, - "float32" - ], - "tangents": [ - 29720, - 24, - "float32" - ], - "textureCoords": [ - [ - 29912, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 29576, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object46_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 31.79132843017578, - 28.84891128540039, - 1.1317274570465088 - ], - "min": [ - 24.018016815185547, - 18.305768966674805, - 1.1317272186279297 - ], - "type": "BoundingBox" - }, - "colors": [ - 15888, - 60, - "float32" - ], - "indexLengths": [ - 15 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 15272, - 15, - "uint8" - ], - "name": "Object46", - "normals": [ - 15468, - 45, - "float32" - ], - "tangents": [ - 15648, - 60, - "float32" - ], - "textureCoords": [ - [ - 16128, - 30, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 15, - "vertices": [ - 15288, - 45, - "float32" - ] - }, - "NavMesh/meshes/Object47_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 18.633033752441406, - 28.8625431060791, - 1.1317274570465088 - ], - "min": [ - 10.847810745239258, - 7.9044647216796875, - 1.131726861000061 - ], - "type": "BoundingBox" - }, - "colors": [ - 39068, - 48, - "float32" - ], - "indexLengths": [ - 12 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 38576, - 12, - "uint8" - ], - "name": "Object47", - "normals": [ - 38732, - 36, - "float32" - ], - "tangents": [ - 38876, - 48, - "float32" - ], - "textureCoords": [ - [ - 39260, - 24, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 12, - "vertices": [ - 38588, - 36, - "float32" - ] - }, - "NavMesh/meshes/Object48_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 19.062997817993164, - 17.793292999267578, - 1.1317270994186401 - ], - "min": [ - 18.633033752441406, - 14.498114585876465, - 1.1317270994186401 - ], - "type": "BoundingBox" - }, - "colors": [ - 20280, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 20032, - 6, - "uint8" - ], - "name": "Object48", - "normals": [ - 20112, - 18, - "float32" - ], - "tangents": [ - 20184, - 24, - "float32" - ], - "textureCoords": [ - [ - 20376, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 20040, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object49_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 24.018016815185547, - 22.692598342895508, - 1.1317274570465088 - ], - "min": [ - 23.575355529785156, - 19.323528289794922, - 1.1317273378372192 - ], - "type": "BoundingBox" - }, - "colors": [ - 7164, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 6916, - 6, - "uint8" - ], - "name": "Object49", - "normals": [ - 6996, - 18, - "float32" - ], - "tangents": [ - 7068, - 24, - "float32" - ], - "textureCoords": [ - [ - 7260, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 6924, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object50_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 29.513912200927734, - 18.314849853515625, - 1.1317273378372192 - ], - "min": [ - 26.185943603515625, - 17.896699905395508, - 1.1317269802093506 - ], - "type": "BoundingBox" - }, - "colors": [ - 19104, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 18856, - 6, - "uint8" - ], - "name": "Object50", - "normals": [ - 18936, - 18, - "float32" - ], - "tangents": [ - 19008, - 24, - "float32" - ], - "textureCoords": [ - [ - 19200, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 18864, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object51_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 23.575355529785156, - 16.162561416625977, - 1.1317272186279297 - ], - "min": [ - 19.062997817993164, - 7.893579483032227, - 1.131726861000061 - ], - "type": "BoundingBox" - }, - "colors": [ - 12072, - 44, - "float32" - ], - "indexLengths": [ - 12 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 11620, - 12, - "uint8" - ], - "name": "Object51", - "normals": [ - 11764, - 33, - "float32" - ], - "tangents": [ - 11896, - 44, - "float32" - ], - "textureCoords": [ - [ - 12248, - 22, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 11, - "vertices": [ - 11632, - 33, - "float32" - ] - }, - "NavMesh/meshes/Object52_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 23.575355529785156, - 17.78635025024414, - 1.1317272186279297 - ], - "min": [ - 19.062997817993164, - 14.542893409729004, - 1.1317270994186401 - ], - "type": "BoundingBox" - }, - "colors": [ - 5864, - 12, - "float32" - ], - "indexLengths": [ - 3 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 5740, - 3, - "uint8" - ], - "name": "Object52", - "normals": [ - 5780, - 9, - "float32" - ], - "tangents": [ - 5816, - 12, - "float32" - ], - "textureCoords": [ - [ - 5912, - 6, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 3, - "vertices": [ - 5744, - 9, - "float32" - ] - }, - "NavMesh/meshes/Object53_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 23.575355529785156, - 22.681562423706055, - 1.1317274570465088 - ], - "min": [ - 19.062997817993164, - 19.4021053314209, - 1.1317270994186401 - ], - "type": "BoundingBox" - }, - "colors": [ - 14220, - 12, - "float32" - ], - "indexLengths": [ - 3 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 14096, - 3, - "uint8" - ], - "name": "Object53", - "normals": [ - 14136, - 9, - "float32" - ], - "tangents": [ - 14172, - 12, - "float32" - ], - "textureCoords": [ - [ - 14268, - 6, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 3, - "vertices": [ - 14100, - 9, - "float32" - ] - }, - "NavMesh/meshes/Object54_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 23.575355529785156, - 20.54177474975586, - 1.1317273378372192 - ], - "min": [ - 19.062997817993164, - 16.162561416625977, - 1.1317270994186401 - ], - "type": "BoundingBox" - }, - "colors": [ - 4552, - 24, - "float32" - ], - "indexLengths": [ - 6 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 4304, - 6, - "uint8" - ], - "name": "Object54", - "normals": [ - 4384, - 18, - "float32" - ], - "tangents": [ - 4456, - 24, - "float32" - ], - "textureCoords": [ - [ - 4648, - 12, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 6, - "vertices": [ - 4312, - 18, - "float32" - ] - }, - "NavMesh/meshes/Object55_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 23.575355529785156, - 28.844013214111328, - 1.1317274570465088 - ], - "min": [ - 19.062997817993164, - 20.54177474975586, - 1.1317270994186401 - ], - "type": "BoundingBox" - }, - "colors": [ - 36916, - 48, - "float32" - ], - "indexLengths": [ - 12 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 36424, - 12, - "uint8" - ], - "name": "Object55", - "normals": [ - 36580, - 36, - "float32" - ], - "tangents": [ - 36724, - 48, - "float32" - ], - "textureCoords": [ - [ - 37108, - 24, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 12, - "vertices": [ - 36436, - 36, - "float32" - ] - }, - "NavMesh/meshes/Object56_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object01_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 23.10231590270996, - -33.44281768798828, - 1.1317250728607178 + 57.0185546875, + -36.574317932128906, + -5.0525879487395287e-05 ], "min": [ - 18.838354110717773, - -33.80412292480469, - -5.040504038333893e-05 + 32.81049346923828, + -61.17765808105469, + -5.160132423043251e-05 ], "type": "BoundingBox" }, "colors": [ - 41172, + 30592, 24, "float32" ], @@ -9013,24 +2743,24 @@ "Triangles" ], "indices": [ - 40924, + 30344, 6, "uint8" ], - "name": "Object56", + "name": "Object01", "normals": [ - 41004, + 30424, 18, "float32" ], "tangents": [ - 41076, + 30496, 24, "float32" ], "textureCoords": [ [ - 41268, + 30688, 12, "float32" ] @@ -9038,769 +2768,484 @@ "type": "Mesh", "vertexCount": 6, "vertices": [ - 40932, + 30352, 18, "float32" ] }, - "NavMesh/meshes/Object57_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 22.95733642578125, - 7.5139617919921875, - -4.859967157244682e-05 - ], - "min": [ - 19.682775497436523, - 4.880096435546875, - -4.8713525757193565e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 21464, - 12, - "float32" - ], - "indexLengths": [ - 3 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 21340, - 3, - "uint8" - ], - "name": "Object57", - "normals": [ - 21380, - 9, - "float32" - ], - "tangents": [ - 21416, - 12, - "float32" - ], - "textureCoords": [ - [ - 21512, - 6, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 3, - "vertices": [ - 21344, - 9, - "float32" - ] - }, - "NavMesh/meshes/Object58_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - 22.92359161376953, - 31.953445434570312, - -4.7530047595500946e-05 - ], - "min": [ - 19.70806312561035, - 29.22612762451172, - -4.764809273183346e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 14416, - 12, - "float32" - ], - "indexLengths": [ - 3 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 14292, - 3, - "uint8" - ], - "name": "Object58", - "normals": [ - 14332, - 9, - "float32" - ], - "tangents": [ - 14368, - 12, - "float32" - ], - "textureCoords": [ - [ - 14464, - 6, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 3, - "vertices": [ - 14296, - 9, - "float32" - ] - }, - "NavMesh/meshes/Object59_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.9635467529296875, - 40.123619079589844, - -4.717288538813591e-05 - ], - "min": [ - -9.581741333007812, - 36.99143981933594, - -4.731002263724804e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 5668, - 12, - "float32" - ], - "indexLengths": [ - 3 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 5544, - 3, - "uint8" - ], - "name": "Object59", - "normals": [ - 5584, - 9, - "float32" - ], - "tangents": [ - 5620, - 12, - "float32" - ], - "textureCoords": [ - [ - 5716, - 6, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 3, - "vertices": [ - 5548, - 9, - "float32" - ] - }, - "NavMesh/meshes/Object60_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -31.308387756347656, - 24.359779357910156, - -4.7862064093351364e-05 - ], - "min": [ - -33.812583923339844, - 21.0477294921875, - -4.800688475370407e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 35960, - 12, - "float32" - ], - "indexLengths": [ - 3 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 35836, - 3, - "uint8" - ], - "name": "Object60", - "normals": [ - 35876, - 9, - "float32" - ], - "tangents": [ - 35912, - 12, - "float32" - ], - "textureCoords": [ - [ - 36008, - 6, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 3, - "vertices": [ - 35840, - 9, - "float32" - ] - }, - "NavMesh/meshes/Object61_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", - "boundingVolume": { - "max": [ - -6.964576721191406, - -16.415699005126953, - -4.9644382670521736e-05 - ], - "min": [ - -9.558414459228516, - -19.702241897583008, - -4.978710785508156e-05 - ], - "type": "BoundingBox" - }, - "colors": [ - 6844, - 12, - "float32" - ], - "indexLengths": [ - 3 - ], - "indexModes": [ - "Triangles" - ], - "indices": [ - 6720, - 3, - "uint8" - ], - "name": "Object61", - "normals": [ - 6760, - 9, - "float32" - ], - "tangents": [ - 6796, - 12, - "float32" - ], - "textureCoords": [ - [ - 6892, - 6, - "float32" - ] - ], - "type": "Mesh", - "vertexCount": 3, - "vertices": [ - 6724, - 9, - "float32" - ] - }, - "NavMesh/meshes/Object62_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object02_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -13.996772766113281, - -33.810394287109375, - -5.040504038333893e-05 + -33.467926025390625, + -35.77601623535156, + -5.04904892295599e-05 ], "min": [ - -17.029029846191406, - -36.372901916503906, - -5.051656626164913e-05 + -57.802703857421875, + -61.17765808105469, + -5.160132423043251e-05 ], "type": "BoundingBox" }, "colors": [ - 34784, - 12, + 43008, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 34660, - 3, + 42760, + 6, "uint8" ], - "name": "Object62", + "name": "Object02", "normals": [ - 34700, - 9, + 42840, + 18, "float32" ], "tangents": [ - 34736, - 12, + 42912, + 24, "float32" ], "textureCoords": [ [ - 34832, - 6, + 43104, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 34664, - 9, + 42768, + 18, "float32" ] }, - "NavMesh/meshes/Object63_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object03_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 23.1023006439209, - -33.80412292480469, - -5.040504038333893e-05 + 57.0185546875, + 54.44654083251953, + -4.654703661799431e-05 ], "min": [ - 18.838354110717773, - -36.57728576660156, - -5.052564665675163e-05 + 34.29576110839844, + 30.882781982421875, + -4.7576846554875374e-05 ], "type": "BoundingBox" }, "colors": [ - 40460, - 12, + 39284, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 40336, - 3, + 39036, + 6, "uint8" ], - "name": "Object63", + "name": "Object03", "normals": [ - 40376, - 9, + 39116, + 18, "float32" ], "tangents": [ - 40412, - 12, + 39188, + 24, "float32" ], "textureCoords": [ [ - 40508, - 6, + 39380, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 40340, - 9, + 39044, + 18, "float32" ] }, - "NavMesh/meshes/Object64_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object04_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 30.555789947509766, - -20.691574096679688, - 1.131725549697876 + -33.467926025390625, + 54.44654083251953, + -4.654703661799431e-05 ], "min": [ - 22.705074310302734, - -25.78832244873047, - 1.1317250728607178 + -57.802703857421875, + 46.788726806640625, + -4.688161425292492e-05 ], "type": "BoundingBox" }, "colors": [ - 26536, - 48, + 38304, + 24, "float32" ], "indexLengths": [ - 12 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 26044, - 12, + 38056, + 6, "uint8" ], - "name": "Object64", + "name": "Object04", "normals": [ - 26200, - 36, + 38136, + 18, "float32" ], "tangents": [ - 26344, - 48, + 38208, + 24, "float32" ], "textureCoords": [ [ - 26728, - 24, + 38400, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 12, + "vertexCount": 6, "vertices": [ - 26056, - 36, + 38064, + 18, "float32" ] }, - "NavMesh/meshes/Object65_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object05_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 30.555789947509766, - -12.458867073059082, - 1.1317259073257446 + -33.68232727050781, + 47.050750732421875, + -4.687020555138588e-05 ], "min": [ - 25.441823959350586, - -20.867570877075195, - 1.131725549697876 + -57.802703857421875, + 9.237152099609375, + -4.85230702906847e-05 ], "type": "BoundingBox" }, "colors": [ - 43964, - 48, + 40780, + 36, "float32" ], "indexLengths": [ - 12 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 43472, - 12, + 40408, + 9, "uint8" ], - "name": "Object65", + "name": "Object05", "normals": [ - 43628, - 36, + 40528, + 27, "float32" ], "tangents": [ - 43772, - 48, + 40636, + 36, "float32" ], "textureCoords": [ [ - 44156, - 24, + 40924, + 18, "float32" ] ], "type": "Mesh", - "vertexCount": 12, + "vertexCount": 9, "vertices": [ - 43484, - 36, + 40420, + 27, "float32" ] }, - "NavMesh/meshes/Object66_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object06_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 25.053449630737305, - -12.459019660949707, - 1.1317259073257446 + -33.770442962646484, + -9.686752319335938, + -4.93503175675869e-05 ], "min": [ - 17.802717208862305, - -20.319705963134766, - 1.1317253112792969 + -57.802703857421875, + -36.397762298583984, + -5.0517963245511055e-05 ], "type": "BoundingBox" }, "colors": [ - 17132, - 48, + 43792, + 24, "float32" ], "indexLengths": [ - 12 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 16640, - 12, + 43544, + 6, "uint8" ], - "name": "Object66", + "name": "Object06", "normals": [ - 16796, - 36, + 43624, + 18, "float32" ], "tangents": [ - 16940, - 48, + 43696, + 24, "float32" ], "textureCoords": [ [ - 17324, - 24, + 43888, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 12, + "vertexCount": 6, "vertices": [ - 16652, - 36, + 43552, + 18, "float32" ] }, - "NavMesh/meshes/Object67_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object07_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 17.427759170532227, - -12.4589262008667, - 1.1317259073257446 + -33.770442962646484, + 9.427955627441406, + -4.851468838751316e-05 ], "min": [ - 9.583291053771973, - -33.44273376464844, - 1.1317250728607178 + -57.802703857421875, + -13.174026489257812, + -4.9502821639180183e-05 ], "type": "BoundingBox" }, "colors": [ - 30452, - 48, + 1028, + 24, "float32" ], "indexLengths": [ - 12 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 29960, - 12, + 780, + 6, "uint8" ], - "name": "Object67", + "name": "Object07", "normals": [ - 30116, - 36, + 860, + 18, "float32" ], "tangents": [ - 30260, - 48, + 932, + 24, "float32" ], "textureCoords": [ [ - 30644, - 24, + 1124, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 12, + "vertexCount": 6, "vertices": [ - 29972, - 36, + 788, + 18, "float32" ] }, - "NavMesh/meshes/Object68_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object08_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 17.780364990234375, - -23.98560333251953, - 1.1317254304885864 + 33.461090087890625, + -36.519405364990234, + -5.052308551967144e-05 ], "min": [ - 17.427759170532227, - -27.40776252746582, - 1.1317253112792969 + 6.7989654541015625, + -61.17765808105469, + -5.160132423043251e-05 ], "type": "BoundingBox" }, "colors": [ - 22764, - 24, + 38820, + 36, "float32" ], "indexLengths": [ - 6 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 22516, - 6, + 38448, + 9, "uint8" ], - "name": "Object68", + "name": "Object08", "normals": [ - 22596, - 18, + 38568, + 27, "float32" ], "tangents": [ - 22668, - 24, + 38676, + 36, "float32" ], "textureCoords": [ [ - 22860, - 12, + 38964, + 18, "float32" ] ], "type": "Mesh", - "vertexCount": 6, + "vertexCount": 9, "vertices": [ - 22524, - 18, + 38460, + 27, "float32" ] }, - "NavMesh/meshes/Object69_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object09_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 25.441823959350586, - -15.017541885375977, - 1.131725788116455 + -6.944538116455078, + -36.36244201660156, + -5.051633343100548e-05 ], "min": [ - 25.053449630737305, - -18.317806243896484, - 1.1317256689071655 + -34.02071762084961, + -61.17765808105469, + -5.160132423043251e-05 ], "type": "BoundingBox" }, "colors": [ - 44500, - 24, + 44308, + 36, "float32" ], "indexLengths": [ - 6 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 44252, - 6, + 43936, + 9, "uint8" ], - "name": "Object69", + "name": "Object09", "normals": [ - 44332, - 18, + 44056, + 27, "float32" ], "tangents": [ - 44404, - 24, + 44164, + 36, "float32" ], "textureCoords": [ [ - 44596, - 12, + 44452, + 18, "float32" ] ], "type": "Mesh", - "vertexCount": 6, + "vertexCount": 9, "vertices": [ - 44260, - 18, + 43948, + 27, "float32" ] }, - "NavMesh/meshes/Object70_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object10_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 22.705074310302734, - -20.69163703918457, - 1.131725549697876 + 7.667087554931641, + -36.36244201660156, + -5.051633343100548e-05 ], "min": [ - 22.320907592773438, - -24.139522552490234, - 1.1317254304885864 + -8.020153045654297, + -61.17765808105469, + -5.160132423043251e-05 ], "type": "BoundingBox" }, "colors": [ - 23548, + 37648, 24, "float32" ], @@ -9811,24 +3256,24 @@ "Triangles" ], "indices": [ - 23300, + 37400, 6, "uint8" ], - "name": "Object70", + "name": "Object10", "normals": [ - 23380, + 37480, 18, "float32" ], "tangents": [ - 23452, + 37552, 24, "float32" ], "textureCoords": [ [ - 23644, + 37744, 12, "float32" ] @@ -9836,28 +3281,28 @@ "type": "Mesh", "vertexCount": 6, "vertices": [ - 23308, + 37408, 18, "float32" ] }, - "NavMesh/meshes/Object71_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object11_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 22.320907592773438, - -23.99681854248047, - 1.1317254304885864 + 57.0185546875, + -9.705116271972656, + -4.935101605951786e-05 ], "min": [ - 17.780364990234375, - -27.398210525512695, - 1.1317253112792969 + 33.461090087890625, + -36.635189056396484, + -5.0528207793831825e-05 ], "type": "BoundingBox" }, "colors": [ - 40780, + 34712, 24, "float32" ], @@ -9868,24 +3313,24 @@ "Triangles" ], "indices": [ - 40532, + 34464, 6, "uint8" ], - "name": "Object71", + "name": "Object11", "normals": [ - 40612, + 34544, 18, "float32" ], "tangents": [ - 40684, + 34616, 24, "float32" ], "textureCoords": [ [ - 40876, + 34808, 12, "float32" ] @@ -9893,28 +3338,28 @@ "type": "Mesh", "vertexCount": 6, "vertices": [ - 40540, + 34472, 18, "float32" ] }, - "NavMesh/meshes/Object72_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object12_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 22.320907592773438, - -20.69161605834961, - 1.131725549697876 + 57.0185546875, + 5.742794036865234, + -4.867580719292164e-05 ], "min": [ - 17.780364990234375, - -24.139522552490234, - 1.1317254304885864 + 33.579139709472656, + -10.013816833496094, + -4.9364520236849785e-05 ], "type": "BoundingBox" }, "colors": [ - 11476, + 34320, 24, "float32" ], @@ -9925,24 +3370,24 @@ "Triangles" ], "indices": [ - 11228, + 34072, 6, "uint8" ], - "name": "Object72", + "name": "Object12", "normals": [ - 11308, + 34152, 18, "float32" ], "tangents": [ - 11380, + 34224, 24, "float32" ], "textureCoords": [ [ - 11572, + 34416, 12, "float32" ] @@ -9950,256 +3395,256 @@ "type": "Mesh", "vertexCount": 6, "vertices": [ - 11236, + 34080, 18, "float32" ] }, - "NavMesh/meshes/Object73_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object13_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.930793762207031, - -24.631820678710938, - 1.1317254304885864 + 35.08671951293945, + 47.13668441772461, + 1.1317284107208252 ], "min": [ - -17.750057220458984, - -33.52833557128906, - 1.1317250728607178 + -34.02071762084961, + -36.397762298583984, + -5.0517963245511055e-05 ], "type": "BoundingBox" }, "colors": [ - 20756, - 32, + 18328, + 1612, "float32" ], "indexLengths": [ - 9 + 420 ], "indexModes": [ "Triangles" ], "indices": [ - 20424, - 9, - "uint8" + 1368, + 420, + "uint16" ], - "name": "Object73", + "name": "Object13", "normals": [ - 20532, - 24, + 7044, + 1209, "float32" ], "tangents": [ - 20628, - 32, + 11880, + 1612, "float32" ], "textureCoords": [ [ - 20884, - 16, + 24776, + 806, "float32" ] ], "type": "Mesh", - "vertexCount": 8, + "vertexCount": 403, "vertices": [ - 20436, - 24, + 2208, + 1209, "float32" ] }, - "NavMesh/meshes/Object74_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object14_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.930793762207031, - -23.478979110717773, - 1.1317254304885864 + 57.0185546875, + 32.06681823730469, + -4.7525158151984215e-05 ], "min": [ - -17.750057220458984, - -26.758281707763672, - 1.1317253112792969 + 34.53754806518555, + 4.887641906738281, + -4.8713525757193565e-05 ], "type": "BoundingBox" }, "colors": [ - 14024, - 12, + 29808, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 13900, - 3, + 29560, + 6, "uint8" ], - "name": "Object74", + "name": "Object14", "normals": [ - 13940, - 9, + 29640, + 18, "float32" ], "tangents": [ - 13976, - 12, + 29712, + 24, "float32" ], "textureCoords": [ [ - 14072, - 6, + 29904, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 13904, - 9, + 29568, + 18, "float32" ] }, - "NavMesh/meshes/Object75_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object15_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.930793762207031, - -12.464359283447266, - 1.131725549697876 + 35.08671951293945, + 54.44654083251953, + -4.654703661799431e-05 ], "min": [ - -17.750057220458984, - -24.631820678710938, - 1.1317250728607178 + 7.668964385986328, + 31.83917236328125, + -4.753516986966133e-05 ], "type": "BoundingBox" }, "colors": [ - 45136, - 48, + 33856, + 36, "float32" ], "indexLengths": [ - 12 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 44644, - 12, + 33484, + 9, "uint8" ], - "name": "Object75", + "name": "Object15", "normals": [ - 44800, - 36, + 33604, + 27, "float32" ], "tangents": [ - 44944, - 48, + 33712, + 36, "float32" ], "textureCoords": [ [ - 45328, - 24, + 34000, + 18, "float32" ] ], "type": "Mesh", - "vertexCount": 12, + "vertexCount": 9, "vertices": [ - 44656, - 36, + 33496, + 27, "float32" ] }, - "NavMesh/meshes/Object76_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object16_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -17.750057220458984, - -23.478979110717773, - 1.1317254304885864 + 8.900352478027344, + 54.44654083251953, + -4.654703661799431e-05 ], "min": [ - -18.14029884338379, - -26.760385513305664, - 1.1317253112792969 + -6.9772796630859375, + 31.83917236328125, + -4.753516986966133e-05 ], "type": "BoundingBox" }, "colors": [ - 28836, - 24, + 40192, + 36, "float32" ], "indexLengths": [ - 6 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 28588, - 6, + 39820, + 9, "uint8" ], - "name": "Object76", + "name": "Object16", "normals": [ - 28668, - 18, + 39940, + 27, "float32" ], "tangents": [ - 28740, - 24, + 40048, + 36, "float32" ], "textureCoords": [ [ - 28932, - 12, + 40336, + 18, "float32" ] ], "type": "Mesh", - "vertexCount": 6, + "vertexCount": 9, "vertices": [ - 28596, - 18, + 39832, + 27, "float32" ] }, - "NavMesh/meshes/Object77_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object17_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -23.238508224487305, - -15.878433227539062, - 1.131725788116455 + -6.811058044433594, + 54.44654083251953, + -4.654703661799431e-05 ], "min": [ - -23.602249145507812, - -19.15614128112793, - 1.1317256689071655 + -33.68232727050781, + 47.050750732421875, + -4.687020555138588e-05 ], "type": "BoundingBox" }, "colors": [ - 9908, + 30984, 24, "float32" ], @@ -10210,24 +3655,24 @@ "Triangles" ], "indices": [ - 9660, + 30736, 6, "uint8" ], - "name": "Object77", + "name": "Object17", "normals": [ - 9740, + 30816, 18, "float32" ], "tangents": [ - 9812, + 30888, 24, "float32" ], "textureCoords": [ [ - 10004, + 31080, 12, "float32" ] @@ -10235,313 +3680,313 @@ "type": "Mesh", "vertexCount": 6, "vertices": [ - 9668, + 30744, 18, "float32" ] }, - "NavMesh/meshes/Object78_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object18_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -18.14029884338379, - -26.760385513305664, - 1.1317253112792969 + 6.813549041748047, + -9.621566772460938, + -4.93472907692194e-05 ], "min": [ - -23.1893253326416, - -33.475555419921875, - 1.1317250728607178 + -6.973289489746094, + -36.519405364990234, + -5.052308551967144e-05 ], "type": "BoundingBox" }, "colors": [ - 21268, - 12, + 36400, + 36, "float32" ], "indexLengths": [ - 3 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 21144, - 3, + 36028, + 9, "uint8" ], - "name": "Object78", + "name": "Object18", "normals": [ - 21184, - 9, + 36148, + 27, "float32" ], "tangents": [ - 21220, - 12, + 36256, + 36, "float32" ], "textureCoords": [ [ - 21316, - 6, + 36544, + 18, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 9, "vertices": [ - 21148, - 9, + 36040, + 27, "float32" ] }, - "NavMesh/meshes/Object79_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object19_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -18.14029884338379, - -21.802143096923828, - 1.131725549697876 + -6.916984558105469, + 9.27435302734375, + -4.852144047617912e-05 ], "min": [ - -30.910619735717773, - -33.472694396972656, - 1.1317250728607178 + -33.881690979003906, + -9.686752319335938, + -4.93503175675869e-05 ], "type": "BoundingBox" }, "colors": [ - 17832, - 40, + 33076, + 24, "float32" ], "indexLengths": [ - 12 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 17420, - 12, + 32828, + 6, "uint8" ], - "name": "Object79", + "name": "Object19", "normals": [ - 17552, - 30, + 32908, + 18, "float32" ], "tangents": [ - 17672, - 40, + 32980, + 24, "float32" ], "textureCoords": [ [ - 17992, - 20, + 33172, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 10, + "vertexCount": 6, "vertices": [ - 17432, - 30, + 32836, + 18, "float32" ] }, - "NavMesh/meshes/Object80_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object20_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -18.14029884338379, - -12.46435832977295, - 1.1317259073257446 + 34.53754806518555, + 4.887641906738281, + -4.8713525757193565e-05 ], "min": [ - -23.24858283996582, - -23.4794864654541, - 1.1317254304885864 + 6.813549041748047, + -9.705116271972656, + -4.935101605951786e-05 ], "type": "BoundingBox" }, "colors": [ - 492, - 48, + 42152, + 36, "float32" ], "indexLengths": [ - 12 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 0, - 12, + 41780, + 9, "uint8" ], - "name": "Object80", + "name": "Object20", "normals": [ - 156, - 36, + 41900, + 27, "float32" ], "tangents": [ - 300, - 48, + 42008, + 36, "float32" ], "textureCoords": [ [ - 684, - 24, + 42296, + 18, "float32" ] ], "type": "Mesh", - "vertexCount": 12, + "vertexCount": 9, "vertices": [ - 12, - 36, + 41792, + 27, "float32" ] }, - "NavMesh/meshes/Object81_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object21_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -23.602249145507812, - -19.154008865356445, - 1.1317256689071655 + 7.71697998046875, + 38.512237548828125, + -4.724343307316303e-05 ], "min": [ - -30.904020309448242, - -21.417129516601562, - 1.131725549697876 + -6.9635467529296875, + 4.871795654296875, + -4.871399141848087e-05 ], "type": "BoundingBox" }, "colors": [ - 26948, - 12, + 41244, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 26824, - 3, + 40996, + 6, "uint8" ], - "name": "Object81", + "name": "Object21", "normals": [ - 26864, - 9, + 41076, + 18, "float32" ], "tangents": [ - 26900, - 12, + 41148, + 24, "float32" ], "textureCoords": [ [ - 26996, - 6, + 41340, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 26828, - 9, + 41004, + 18, "float32" ] }, - "NavMesh/meshes/Object82_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object22_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -23.602249145507812, - -12.418978691101074, - 1.1317259073257446 + 7.71697998046875, + 9.27435302734375, + -4.852144047617912e-05 ], "min": [ - -30.904020309448242, - -15.879364013671875, - 1.131725788116455 + -6.973289489746094, + -9.679679870605469, + -4.9350084736943245e-05 ], "type": "BoundingBox" }, "colors": [ - 33412, - 12, + 32160, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 33288, - 3, + 31912, + 6, "uint8" ], - "name": "Object82", + "name": "Object22", "normals": [ - 33328, - 9, + 31992, + 18, "float32" ], "tangents": [ - 33364, - 12, + 32064, + 24, "float32" ], "textureCoords": [ [ - 33460, - 6, + 32256, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 33292, - 9, + 31920, + 18, "float32" ] }, - "NavMesh/meshes/Object83_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object23_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -23.602249145507812, - -12.418978691101074, - 1.1317259073257446 + 20.127182006835938, + -33.80377197265625, + -5.0404807552695274e-05 ], "min": [ - -30.904020309448242, - -21.417129516601562, - 1.131725549697876 + 6.7989654541015625, + -36.57728576660156, + -5.052564665675163e-05 ], "type": "BoundingBox" }, "colors": [ - 11084, + 30200, 24, "float32" ], @@ -10552,24 +3997,24 @@ "Triangles" ], "indices": [ - 10836, + 29952, 6, "uint8" ], - "name": "Object83", + "name": "Object23", "normals": [ - 10916, + 30032, 18, "float32" ], "tangents": [ - 10988, + 30104, 24, "float32" ], "textureCoords": [ [ - 11180, + 30296, 12, "float32" ] @@ -10577,85 +4022,85 @@ "type": "Mesh", "vertexCount": 6, "vertices": [ - 10844, + 29960, 18, "float32" ] }, - "NavMesh/meshes/Object84_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object24_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.930793762207031, - -24.631820678710938, - 1.1317254304885864 + 33.461090087890625, + -33.804134368896484, + -5.040504038333893e-05 ], "min": [ - -13.992505073547363, - -33.52833557128906, - 1.1317250728607178 + 20.127182006835938, + -36.635189056396484, + -5.0528207793831825e-05 ], "type": "BoundingBox" }, "colors": [ - 41440, - 12, + 37256, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 41316, - 3, + 37008, + 6, "uint8" ], - "name": "Object84", + "name": "Object24", "normals": [ - 41356, - 9, + 37088, + 18, "float32" ], "tangents": [ - 41392, - 12, + 37160, + 24, "float32" ], "textureCoords": [ [ - 41488, - 6, + 37352, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 41320, - 9, + 37016, + 18, "float32" ] }, - "NavMesh/meshes/Object85_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object25_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 26.20972442626953, - 17.896699905395508, - 1.1317269802093506 + 23.102087020874023, + -33.804115295410156, + -5.040504038333893e-05 ], "min": [ - 24.018016815185547, - 7.906352996826172, - 1.131726861000061 + 18.838382720947266, + -36.57728576660156, + -5.052564665675163e-05 ], "type": "BoundingBox" }, "colors": [ - 29496, + 1296, 12, "float32" ], @@ -10666,24 +4111,24 @@ "Triangles" ], "indices": [ - 29372, + 1172, 3, "uint8" ], - "name": "Object85", + "name": "Object25", "normals": [ - 29412, + 1212, 9, "float32" ], "tangents": [ - 29448, + 1248, 12, "float32" ], "textureCoords": [ [ - 29544, + 1344, 6, "float32" ] @@ -10691,200 +4136,200 @@ "type": "Mesh", "vertexCount": 3, "vertices": [ - 29376, + 1176, 9, "float32" ] }, - "NavMesh/meshes/Object86_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object26_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 31.79119110107422, - 17.896699905395508, - 1.1317269802093506 + 23.10231590270996, + -33.44281768798828, + 1.1317250728607178 ], "min": [ - 29.513912200927734, - 7.906352996826172, - 1.131726861000061 + 18.838356018066406, + -33.804134368896484, + -5.040504038333893e-05 ], "type": "BoundingBox" }, "colors": [ - 24600, - 12, + 43400, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 24476, - 3, + 43152, + 6, "uint8" ], - "name": "Object86", + "name": "Object26", "normals": [ - 24516, - 9, + 43232, + 18, "float32" ], "tangents": [ - 24552, - 12, + 43304, + 24, "float32" ], "textureCoords": [ [ - 24648, - 6, + 43496, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 24480, - 9, + 43160, + 18, "float32" ] }, - "NavMesh/meshes/Object87_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object27_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 31.79132843017578, - 28.84891128540039, - 1.1317274570465088 + 23.10231590270996, + -26.161367416381836, + 1.1317253112792969 ], "min": [ - 24.018016815185547, - 19.323528289794922, - 1.1317273378372192 + 17.780330657958984, + -33.44281768798828, + 1.1317250728607178 ], "type": "BoundingBox" }, "colors": [ - 2276, - 12, + 32636, + 32, "float32" ], "indexLengths": [ - 3 + 9 ], "indexModes": [ "Triangles" ], "indices": [ - 2152, - 3, + 32304, + 9, "uint8" ], - "name": "Object87", + "name": "Object27", "normals": [ - 2192, - 9, + 32412, + 24, "float32" ], "tangents": [ - 2228, - 12, + 32508, + 32, "float32" ], "textureCoords": [ [ - 2324, - 6, + 32764, + 16, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 8, "vertices": [ - 2156, - 9, + 32316, + 24, "float32" ] }, - "NavMesh/meshes/Object88_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object28_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 18.633033752441406, - 17.793292999267578, - 1.1317272186279297 + 22.320907592773438, + -23.99681854248047, + 1.131725549697876 ], "min": [ - 10.847810745239258, - 14.498114585876465, - 1.1317270994186401 + 17.780364990234375, + -27.398212432861328, + 1.1317253112792969 ], "type": "BoundingBox" }, "colors": [ - 1296, - 12, + 31768, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 1172, - 3, + 31520, + 6, "uint8" ], - "name": "Object88", + "name": "Object28", "normals": [ - 1212, - 9, + 31600, + 18, "float32" ], "tangents": [ - 1248, - 12, + 31672, + 24, "float32" ], "textureCoords": [ [ - 1344, - 6, + 31864, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 1176, - 9, + 31528, + 18, "float32" ] }, - "NavMesh/meshes/Object89_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object29_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.939443588256836, - 44.08795166015625, - 1.1317284107208252 + 30.555805206298828, + -26.161367416381836, + 1.1317253112792969 ], "min": [ - -16.652172088623047, - 31.49629783630371, - 1.1317275762557983 + 22.32034683227539, + -33.44281768798828, + 1.1317250728607178 ], "type": "BoundingBox" }, "colors": [ - 7556, - 24, + 33388, + 16, "float32" ], "indexLengths": [ @@ -10894,224 +4339,224 @@ "Triangles" ], "indices": [ - 7308, + 33220, 6, "uint8" ], - "name": "Object89", + "name": "Object29", "normals": [ - 7388, - 18, + 33276, + 12, "float32" ], "tangents": [ - 7460, - 24, + 33324, + 16, "float32" ], "textureCoords": [ [ - 7652, - 12, + 33452, + 8, "float32" ] ], "type": "Mesh", - "vertexCount": 6, + "vertexCount": 4, "vertices": [ - 7316, - 18, + 33228, + 12, "float32" ] }, - "NavMesh/meshes/Object90_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object30_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.932160377502441, - 44.08795166015625, - 1.1317284107208252 + 22.320907592773438, + -20.69161605834961, + 1.131725549697876 ], "min": [ - -16.598655700683594, - 40.121612548828125, - 1.131728172302246 + 17.780364990234375, + -24.139522552490234, + 1.131725549697876 ], "type": "BoundingBox" }, "colors": [ - 8216, - 12, + 39676, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 8092, - 3, + 39428, + 6, "uint8" ], - "name": "Object90", + "name": "Object30", "normals": [ - 8132, - 9, + 39508, + 18, "float32" ], "tangents": [ - 8168, - 12, + 39580, + 24, "float32" ], "textureCoords": [ [ - 8264, - 6, + 39772, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 8096, - 9, + 39436, + 18, "float32" ] }, - "NavMesh/meshes/Object91_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object31_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.945653915405273, - 36.99769592285156, - 1.1317278146743774 + 17.780364990234375, + -23.98560333251953, + 1.131725549697876 ], "min": [ - -16.652172088623047, - 30.991748809814453, - 1.1317275762557983 + 17.427759170532227, + -27.40776252746582, + 1.1317253112792969 ], "type": "BoundingBox" }, "colors": [ - 8804, - 12, + 41636, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 8680, - 3, + 41388, + 6, "uint8" ], - "name": "Object91", + "name": "Object31", "normals": [ - 8720, - 9, + 41468, + 18, "float32" ], "tangents": [ - 8756, - 12, + 41540, + 24, "float32" ], "textureCoords": [ [ - 8852, - 6, + 41732, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 8684, - 9, + 41396, + 18, "float32" ] }, - "NavMesh/meshes/Object92_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object32_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -9.957063674926758, - 31.49629783630371, - 1.1317278146743774 + 22.705074310302734, + -20.69163703918457, + 1.131725549697876 ], "min": [ - -20.21404457092285, - 12.203591346740723, - 1.1317267417907715 + 22.320907592773438, + -24.139522552490234, + 1.1317254304885864 ], "type": "BoundingBox" }, "colors": [ - 13076, - 72, + 31376, + 24, "float32" ], "indexLengths": [ - 18 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 12336, - 18, + 31128, + 6, "uint8" ], - "name": "Object92", + "name": "Object32", "normals": [ - 12572, - 54, + 31208, + 18, "float32" ], "tangents": [ - 12788, - 72, + 31280, + 24, "float32" ], "textureCoords": [ [ - 13364, - 36, + 31472, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 18, + "vertexCount": 6, "vertices": [ - 12356, - 54, + 31136, + 18, "float32" ] }, - "NavMesh/meshes/Object93_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object33_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -19.388011932373047, - 31.49566078186035, - 1.1317275762557983 + 30.555789947509766, + -20.691574096679688, + 1.131725549697876 ], "min": [ - -30.95218276977539, - 20.168859481811523, - 1.1317273378372192 + 22.705074310302734, + -25.78832244873047, + 1.1317250728607178 ], "type": "BoundingBox" }, "colors": [ - 3232, + 28492, 48, "float32" ], @@ -11122,24 +4567,24 @@ "Triangles" ], "indices": [ - 2740, + 28000, 12, "uint8" ], - "name": "Object93", + "name": "Object33", "normals": [ - 2896, + 28156, 36, "float32" ], "tangents": [ - 3040, + 28300, 48, "float32" ], "textureCoords": [ [ - 3424, + 28684, 24, "float32" ] @@ -11147,256 +4592,256 @@ "type": "Mesh", "vertexCount": 12, "vertices": [ - 2752, + 28012, 36, "float32" ] }, - "NavMesh/meshes/Object94_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object34_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -22.518360137939453, - 31.494958877563477, - 1.1317275762557983 + 30.555789947509766, + -12.458867073059082, + 1.1317259073257446 ], "min": [ - -30.93282699584961, - 24.357057571411133, - 1.1317275762557983 + 25.441823959350586, + -20.867570877075195, + 1.131725549697876 ], "type": "BoundingBox" }, "colors": [ - 16568, - 12, + 35348, + 48, "float32" ], "indexLengths": [ - 3 + 12 ], "indexModes": [ "Triangles" ], "indices": [ - 16444, - 3, + 34856, + 12, "uint8" ], - "name": "Object94", + "name": "Object34", "normals": [ - 16484, - 9, + 35012, + 36, "float32" ], "tangents": [ - 16520, - 12, + 35156, + 48, "float32" ], "textureCoords": [ [ - 16616, - 6, + 35540, + 24, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 12, "vertices": [ - 16448, - 9, + 34868, + 36, "float32" ] }, - "NavMesh/meshes/Object95_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object35_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -20.620180130004883, - 19.782522201538086, - 1.1317273378372192 + 25.053449630737305, + -12.459019660949707, + 1.1317259073257446 ], "min": [ - -30.875019073486328, - 17.7166690826416, - 1.1317272186279297 + 17.802717208862305, + -20.319705963134766, + 1.1317253112792969 ], "type": "BoundingBox" }, "colors": [ - 16372, - 12, + 29272, + 48, "float32" ], "indexLengths": [ - 3 + 12 ], "indexModes": [ "Triangles" ], "indices": [ - 16248, - 3, + 28780, + 12, "uint8" ], - "name": "Object95", + "name": "Object35", "normals": [ - 16288, - 9, + 28936, + 36, "float32" ], "tangents": [ - 16324, - 12, + 29080, + 48, "float32" ], "textureCoords": [ [ - 16420, - 6, + 29464, + 24, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 12, "vertices": [ - 16252, - 9, + 28792, + 36, "float32" ] }, - "NavMesh/meshes/Object96_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object36_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -20.614896774291992, - 14.474276542663574, - 1.1317270994186401 + 25.441823959350586, + -15.017541885375977, + 1.131725788116455 ], "min": [ - -30.903011322021484, - 12.22286319732666, - 1.1317269802093506 + 25.053449630737305, + -18.317806243896484, + 1.1317256689071655 ], "type": "BoundingBox" }, "colors": [ - 32824, - 12, + 37960, + 16, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 32700, - 3, + 37792, + 6, "uint8" ], - "name": "Object96", + "name": "Object36", "normals": [ - 32740, - 9, + 37848, + 12, "float32" ], "tangents": [ - 32776, - 12, + 37896, + 16, "float32" ], "textureCoords": [ [ - 32872, - 6, + 38024, + 8, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 4, "vertices": [ - 32704, - 9, + 37800, + 12, "float32" ] }, - "NavMesh/meshes/Object97_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object37_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -20.200464248657227, - 17.717557907104492, - 1.1317272186279297 + 17.427759170532227, + -12.4589262008667, + 1.1317259073257446 ], "min": [ - -20.620180130004883, - 14.474276542663574, - 1.1317270994186401 + 9.583291053771973, + -33.44273376464844, + 1.1317250728607178 ], "type": "BoundingBox" }, "colors": [ - 29228, - 24, + 492, + 48, "float32" ], "indexLengths": [ - 6 + 12 ], "indexModes": [ "Triangles" ], "indices": [ - 28980, - 6, + 0, + 12, "uint8" ], - "name": "Object97", + "name": "Object37", "normals": [ - 29060, - 18, + 156, + 36, "float32" ], "tangents": [ - 29132, - 24, + 300, + 48, "float32" ], "textureCoords": [ [ - 29324, - 12, + 684, + 24, "float32" ] ], "type": "Mesh", - "vertexCount": 6, + "vertexCount": 12, "vertices": [ - 28988, - 18, + 12, + 36, "float32" ] }, - "NavMesh/meshes/Object98_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object38_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -20.616975784301758, - 19.782522201538086, - 1.1317273378372192 + 33.579139709472656, + -9.705116271972656, + -4.935101605951786e-05 ], "min": [ - -30.903011322021484, - 12.22286319732666, - 1.1317269802093506 + 30.90521240234375, + -36.635189056396484, + -5.0528207793831825e-05 ], "type": "BoundingBox" }, "colors": [ - 38432, + 35884, 24, "float32" ], @@ -11407,24 +4852,24 @@ "Triangles" ], "indices": [ - 38184, + 35636, 6, "uint8" ], - "name": "Object98", + "name": "Object38", "normals": [ - 38264, + 35716, 18, "float32" ], "tangents": [ - 38336, + 35788, 24, "float32" ], "textureCoords": [ [ - 38528, + 35980, 12, "float32" ] @@ -11432,122 +4877,122 @@ "type": "Mesh", "vertexCount": 6, "vertices": [ - 38192, + 35644, 18, "float32" ] }, - "NavMesh/meshes/Object99_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object39_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - -17.02194595336914, - 44.084068298339844, - 1.1317284107208252 + 33.579139709472656, + -9.679679870605469, + -4.9350084736943245e-05 ], "min": [ - -19.38890838623047, - 31.912586212158203, - 1.131727695465088 + 6.813549041748047, + -12.086894989013672, + -4.9454858526587486e-05 ], "type": "BoundingBox" }, "colors": [ - 21072, - 12, + 42616, + 24, "float32" ], "indexLengths": [ - 3 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 20948, - 3, + 42368, + 6, "uint8" ], - "name": "Object99", + "name": "Object39", "normals": [ - 20988, - 9, + 42448, + 18, "float32" ], "tangents": [ - 21024, - 12, + 42520, + 24, "float32" ], "textureCoords": [ [ - 21120, - 6, + 42712, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 3, + "vertexCount": 6, "vertices": [ - 20952, - 9, + 42376, + 18, "float32" ] }, - "NavMesh/meshes/broken_door_0.mesh": { - "binaryRef": "NavMesh/binaries/1385086104_data.bin", + "NavMesh/meshes/Object40_0.mesh": { + "binaryRef": "NavMesh/binaries/1385113671_data.bin", "boundingVolume": { "max": [ - 30.555805206298828, - -26.161367416381836, - 1.1317253112792969 + 9.21615982055664, + -9.679679870605469, + -4.9350084736943245e-05 ], "min": [ - 17.780330657958984, - -33.44281768798828, - 1.1317250728607178 + 6.7989654541015625, + -36.519405364990234, + -5.052308551967144e-05 ], "type": "BoundingBox" }, "colors": [ - 5232, - 52, + 36864, + 24, "float32" ], "indexLengths": [ - 15 + 6 ], "indexModes": [ "Triangles" ], "indices": [ - 4696, - 15, + 36616, + 6, "uint8" ], - "name": "broken door", + "name": "Object40", "normals": [ - 4868, - 39, + 36696, + 18, "float32" ], "tangents": [ - 5024, - 52, + 36768, + 24, "float32" ], "textureCoords": [ [ - 5440, - 26, + 36960, + 12, "float32" ] ], "type": "Mesh", - "vertexCount": 13, + "vertexCount": 6, "vertices": [ - 4712, - 39, + 36624, + 18, "float32" ] }, @@ -11657,8 +5102,7 @@ "PhysicsHull/entities/Box32_0.entity", "PhysicsHull/entities/Box42_0.entity", "PhysicsHull/meshes/Box20_0.mesh", - "PhysicsHull/binaries/1385084263_data.bin", - "PhysicsHull/binaries/1385086121_data.bin" + "PhysicsHull/binaries/1385113934_data.bin" ], "name": "PhysicsHull", "ref": "PhysicsHull/PhysicsHull.group" @@ -13531,14 +6975,13 @@ }, "cullState": { "cullFace": "Back", - "enabled": false, + "enabled": true, "frontFace": "CCW" }, "depthState": { "enabled": true, - "write": false + "write": true }, - "dualTransparency": true, "name": "DefaultMaterial", "ref": "PhysicsHull/materials/DefaultMaterial.material", "renderQueue": 2000, @@ -13609,7 +7052,7 @@ } }, "PhysicsHull/meshes/Box01_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 31.22710418701172, @@ -13662,7 +7105,7 @@ ] }, "PhysicsHull/meshes/Box02_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 9.937784194946289, @@ -13715,7 +7158,7 @@ ] }, "PhysicsHull/meshes/Box03_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 18.036701202392578, @@ -13768,7 +7211,7 @@ ] }, "PhysicsHull/meshes/Box04_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 18.036701202392578, @@ -13821,7 +7264,7 @@ ] }, "PhysicsHull/meshes/Box05_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 30.805686950683594, @@ -13874,7 +7317,7 @@ ] }, "PhysicsHull/meshes/Box06_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 18.9420108795166, @@ -13927,7 +7370,7 @@ ] }, "PhysicsHull/meshes/Box07_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 30.834556579589844, @@ -13980,7 +7423,7 @@ ] }, "PhysicsHull/meshes/Box08_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 22.928436279296875, @@ -14033,7 +7476,7 @@ ] }, "PhysicsHull/meshes/Box09_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 25.410242080688477, @@ -14086,7 +7529,7 @@ ] }, "PhysicsHull/meshes/Box10_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 25.826522827148438, @@ -14139,7 +7582,7 @@ ] }, "PhysicsHull/meshes/Box11_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 25.826522827148438, @@ -14192,7 +7635,7 @@ ] }, "PhysicsHull/meshes/Box12_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 30.944557189941406, @@ -14245,7 +7688,7 @@ ] }, "PhysicsHull/meshes/Box13_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 65.07511901855469, @@ -14298,7 +7741,7 @@ ] }, "PhysicsHull/meshes/Box14_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -56.15354537963867, @@ -14351,7 +7794,7 @@ ] }, "PhysicsHull/meshes/Box15_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 60.46521759033203, @@ -14404,7 +7847,7 @@ ] }, "PhysicsHull/meshes/Box16_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 60.46521759033203, @@ -14457,7 +7900,7 @@ ] }, "PhysicsHull/meshes/Box18_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 19.79659652709961, @@ -14514,7 +7957,7 @@ ] }, "PhysicsHull/meshes/Box19_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 31.957469940185547, @@ -14571,7 +8014,7 @@ ] }, "PhysicsHull/meshes/Box20_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 31.957469940185547, @@ -14624,7 +8067,7 @@ ] }, "PhysicsHull/meshes/Box21_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 19.304040908813477, @@ -14677,7 +8120,7 @@ ] }, "PhysicsHull/meshes/Box22_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 19.304040908813477, @@ -14730,7 +8173,7 @@ ] }, "PhysicsHull/meshes/Box23_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 24.29361343383789, @@ -14783,7 +8226,7 @@ ] }, "PhysicsHull/meshes/Box24_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 24.29361343383789, @@ -14836,7 +8279,7 @@ ] }, "PhysicsHull/meshes/Box25_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 19.786264419555664, @@ -14893,7 +8336,7 @@ ] }, "PhysicsHull/meshes/Box26_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 31.957469940185547, @@ -14950,7 +8393,7 @@ ] }, "PhysicsHull/meshes/Box27_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 11.051101684570312, @@ -15003,7 +8446,7 @@ ] }, "PhysicsHull/meshes/Box28_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 32.606903076171875, @@ -15056,7 +8499,7 @@ ] }, "PhysicsHull/meshes/Box29_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ 26.307973861694336, @@ -15109,7 +8552,7 @@ ] }, "PhysicsHull/meshes/Box30_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -30.59536361694336, @@ -15162,7 +8605,7 @@ ] }, "PhysicsHull/meshes/Box31_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -17.511760711669922, @@ -15215,7 +8658,7 @@ ] }, "PhysicsHull/meshes/Box32_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.191642761230469, @@ -15268,7 +8711,7 @@ ] }, "PhysicsHull/meshes/Box33_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.59384536743164, @@ -15321,7 +8764,7 @@ ] }, "PhysicsHull/meshes/Box34_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -17.042613983154297, @@ -15374,7 +8817,7 @@ ] }, "PhysicsHull/meshes/Box35_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -17.511760711669922, @@ -15427,7 +8870,7 @@ ] }, "PhysicsHull/meshes/Box36_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -23.424884796142578, @@ -15480,7 +8923,7 @@ ] }, "PhysicsHull/meshes/Box37_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -22.899883270263672, @@ -15533,7 +8976,7 @@ ] }, "PhysicsHull/meshes/Box38_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -22.89987564086914, @@ -15586,7 +9029,7 @@ ] }, "PhysicsHull/meshes/Box39_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.677970886230469, @@ -15639,7 +9082,7 @@ ] }, "PhysicsHull/meshes/Box40_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.191638946533203, @@ -15692,7 +9135,7 @@ ] }, "PhysicsHull/meshes/Box41_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.780586242675781, @@ -15745,7 +9188,7 @@ ] }, "PhysicsHull/meshes/Box42_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.778667449951172, @@ -15798,7 +9241,7 @@ ] }, "PhysicsHull/meshes/Box43_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -22.497394561767578, @@ -15851,7 +9294,7 @@ ] }, "PhysicsHull/meshes/Box44_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -16.83306121826172, @@ -15904,7 +9347,7 @@ ] }, "PhysicsHull/meshes/Box45_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -20.43466567993164, @@ -15957,7 +9400,7 @@ ] }, "PhysicsHull/meshes/Box46_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -30.708065032958984, @@ -16010,7 +9453,7 @@ ] }, "PhysicsHull/meshes/Box47_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -16.326168060302734, @@ -16063,7 +9506,7 @@ ] }, "PhysicsHull/meshes/Box48_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.165019989013672, @@ -16116,7 +9559,7 @@ ] }, "PhysicsHull/meshes/Box49_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -9.165019989013672, @@ -16169,7 +9612,7 @@ ] }, "PhysicsHull/meshes/Box50_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -19.892704010009766, @@ -16222,7 +9665,7 @@ ] }, "PhysicsHull/meshes/Box51_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -19.892704010009766, @@ -16275,7 +9718,7 @@ ] }, "PhysicsHull/meshes/Box52_0.mesh": { - "binaryRef": "PhysicsHull/binaries/1385086121_data.bin", + "binaryRef": "PhysicsHull/binaries/1385113934_data.bin", "boundingVolume": { "max": [ -30.749794006347656, @@ -16334,120 +9777,58 @@ 0.78, 1 ], - "created": "2013-11-22T01:36:11.432154", + "created": "2013-11-22T09:45:01.013568", "deleted": false, "edit": [], "entityRefs": [ - "NavMesh/entities/Object34_0.entity", - "NavMesh/entities/Door06_0.entity", - "NavMesh/entities/Object38_0.entity", - "NavMesh/entities/Object90_0.entity", - "NavMesh/entities/Object91_0.entity", - "NavMesh/entities/Object63_0.entity", - "NavMesh/entities/Object23_0.entity", - "NavMesh/entities/Object24_0.entity", - "NavMesh/entities/Object100_0.entity", - "NavMesh/entities/Object94_0.entity", - "NavMesh/entities/Object81_0.entity", - "NavMesh/entities/Object14_0.entity", - "NavMesh/entities/Object20_0.entity", - "NavMesh/entities/Object28_0.entity", - "NavMesh/entities/Object66_0.entity", - "NavMesh/entities/Object17_0.entity", - "NavMesh/entities/Object95_0.entity", - "NavMesh/entities/Object31_0.entity", - "NavMesh/entities/Door02_0.entity", - "NavMesh/entities/Object22_0.entity", - "NavMesh/entities/Object70_0.entity", - "NavMesh/entities/Object99_0.entity", - "NavMesh/entities/Object36_0.entity", - "NavMesh/entities/Object69_0.entity", - "NavMesh/entities/Object92_0.entity", - "NavMesh/entities/Object76_0.entity", - "NavMesh/entities/Object39_0.entity", - "NavMesh/entities/Object93_0.entity", - "NavMesh/entities/Object71_0.entity", - "NavMesh/entities/Object56_0.entity", - "NavMesh/entities/Object26_0.entity", + "NavMesh/entities/Object10_0.entity", "NavMesh/entities/Object08_0.entity", - "NavMesh/entities/Object41_0.entity", - "NavMesh/entities/Object60_0.entity", + "NavMesh/entities/Object19_0.entity", + "NavMesh/entities/Object17_0.entity", "NavMesh/entities/Object12_0.entity", - "NavMesh/entities/Object43_0.entity", - "NavMesh/entities/Object21_0.entity", + "NavMesh/entities/Object20_0.entity", + "NavMesh/entities/Object07_0.entity", "NavMesh/entities/Object05_0.entity", - "NavMesh/entities/Object79_0.entity", "NavMesh/entities/Object02_0.entity", - "NavMesh/entities/Door03_0.entity", - "NavMesh/entities/Object87_0.entity", - "NavMesh/entities/Object33_0.entity", - "NavMesh/entities/Object88_0.entity", - "NavMesh/entities/Object06_0.entity", - "NavMesh/entities/Object53_0.entity", - "NavMesh/entities/Object54_0.entity", - "NavMesh/entities/Object48_0.entity", - "NavMesh/entities/Object25_0.entity", - "NavMesh/entities/Object89_0.entity", - "NavMesh/entities/Object04_0.entity", - "NavMesh/entities/Object77_0.entity", - "NavMesh/entities/Object27_0.entity", - "NavMesh/entities/Object19_0.entity", - "NavMesh/entities/Object65_0.entity", - "NavMesh/entities/Object51_0.entity", - "NavMesh/entities/Object85_0.entity", - "NavMesh/entities/Object30_0.entity", - "NavMesh/entities/Door04_0.entity", - "NavMesh/entities/Object74_0.entity", - "NavMesh/entities/Object67_0.entity", - "NavMesh/entities/Object10_0.entity", - "NavMesh/entities/Object29_0.entity", - "NavMesh/entities/Object82_0.entity", - "NavMesh/entities/Object62_0.entity", - "NavMesh/entities/Object58_0.entity", - "NavMesh/entities/Object35_0.entity", - "NavMesh/entities/Object61_0.entity", - "NavMesh/entities/Object80_0.entity", - "NavMesh/entities/Object96_0.entity", "NavMesh/entities/Object09_0.entity", + "NavMesh/entities/Object06_0.entity", + "NavMesh/entities/Object22_0.entity", "NavMesh/entities/Object13_0.entity", - "NavMesh/entities/Object73_0.entity", "NavMesh/entities/Object03_0.entity", - "NavMesh/entities/Object101_0.entity", - "NavMesh/entities/Object68_0.entity", - "NavMesh/entities/Object72_0.entity", - "NavMesh/entities/Object86_0.entity", - "NavMesh/entities/Object32_0.entity", - "NavMesh/entities/Object75_0.entity", - "NavMesh/entities/Object45_0.entity", - "NavMesh/entities/Door05_0.entity", - "NavMesh/entities/Object40_0.entity", - "NavMesh/entities/Object37_0.entity", - "NavMesh/entities/broken_door_0.entity", - "NavMesh/entities/Object44_0.entity", - "NavMesh/entities/Object52_0.entity", - "NavMesh/entities/Object97_0.entity", - "NavMesh/entities/Object55_0.entity", - "NavMesh/entities/Object64_0.entity", - "NavMesh/entities/Object49_0.entity", - "NavMesh/entities/Door01_0.entity", - "NavMesh/entities/Object47_0.entity", - "NavMesh/entities/Object42_0.entity", - "NavMesh/entities/Object78_0.entity", - "NavMesh/entities/Object57_0.entity", - "NavMesh/entities/Object50_0.entity", - "NavMesh/entities/Object102_0.entity", - "NavMesh/entities/Object83_0.entity", - "NavMesh/entities/Object15_0.entity", + "NavMesh/entities/Object04_0.entity", + "NavMesh/entities/Object01_0.entity", "NavMesh/entities/Object16_0.entity", - "NavMesh/entities/Object84_0.entity", "NavMesh/entities/Object11_0.entity", "NavMesh/entities/Object18_0.entity", - "NavMesh/entities/Object46_0.entity", - "NavMesh/entities/Object07_0.entity", - "NavMesh/entities/Object59_0.entity", - "NavMesh/entities/Object98_0.entity", - "NavMesh/entities/Object01_0.entity", + "NavMesh/entities/Object21_0.entity", + "NavMesh/entities/Object14_0.entity", + "NavMesh/entities/Object15_0.entity", "NavMesh/entities/RootNode.entity", + "NavMesh/entities/Object29_0.entity", + "NavMesh/entities/Object24_0.entity", + "NavMesh/entities/Object34_0.entity", + "NavMesh/entities/Object32_0.entity", + "NavMesh/entities/Object33_0.entity", + "NavMesh/entities/Object35_0.entity", + "NavMesh/entities/Object39_0.entity", + "NavMesh/entities/Object25_0.entity", + "NavMesh/entities/Object31_0.entity", + "NavMesh/entities/Object36_0.entity", + "NavMesh/entities/Object28_0.entity", + "NavMesh/entities/Object23_0.entity", + "NavMesh/entities/Object40_0.entity", + "NavMesh/entities/Object38_0.entity", + "NavMesh/entities/Object37_0.entity", + "NavMesh/entities/Object30_0.entity", + "NavMesh/entities/Object27_0.entity", + "NavMesh/entities/Object26_0.entity", + "Geometry/entities/Geometry_Material0_0.entity", + "Geometry/entities/Geometry_Material3_0.entity", + "Geometry/entities/Geometry_Material2_0.entity", + "Geometry/entities/Geometry_Material1_0.entity", + "Geometry/entities/RootNode.entity", + "GroundPhys/entities/Ground1_0.entity", + "GroundPhys/entities/RootNode.entity", "PhysicsHull/entities/Box49_0.entity", "PhysicsHull/entities/Box47_0.entity", "PhysicsHull/entities/Box34_0.entity", @@ -16499,14 +9880,7 @@ "PhysicsHull/entities/Box24_0.entity", "PhysicsHull/entities/Box32_0.entity", "PhysicsHull/entities/Box42_0.entity", - "PhysicsHull/entities/RootNode.entity", - "GroundPhys/entities/Ground1_0.entity", - "GroundPhys/entities/RootNode.entity", - "Geometry/entities/Geometry_Material0_0.entity", - "Geometry/entities/Geometry_Material3_0.entity", - "Geometry/entities/Geometry_Material2_0.entity", - "Geometry/entities/Geometry_Material1_0.entity", - "Geometry/entities/RootNode.entity" + "PhysicsHull/entities/RootNode.entity" ], "fogColor": [ 1, @@ -16522,14 +9896,13 @@ ], "groupRefs": [ "NavMesh/NavMesh.group", - "PhysicsHull/PhysicsHull.group", - "GroundPhys/GroundPhys.group", "Geometry/Geometry.group", - "root.group" + "GroundPhys/GroundPhys.group", + "PhysicsHull/PhysicsHull.group" ], - "id": "MBMtJQmqRpOGZR8VAah3_Q", + "id": "M-Z3-0kfSVSEYkscJp7PGg", "licenseType": "CC0", - "modified": "2013-11-22T01:36:11.432154", + "modified": "2013-11-22T09:45:01.013568", "name": "Goobers", "originalLicenseType": null, "own": [ @@ -16541,155 +9914,17 @@ "skybox": { "environmentType": 1, "imageUrls": [ - "images/Night_PosX.jpg", - "images/Night_NegX.jpg", - "images/Night_PosY.jpg", - "images/Night_NegY.jpg", - "images/Night_PosZ.jpg", - "images/Night_NegZ.jpg" + "", + "", + "", + "", + "", + "" ], "rotation": 0, "shape": "Box" }, "useFog": false, "view": [] - }, - "root.group": { - "libraryRefs": [ - "images/Night_NegY.jpg", - "textures/Night_NegY.texture", - "images/Night_PosY.jpg", - "textures/Night_PosY.texture", - "images/Night_NegX.jpg", - "textures/Night_NegX.texture", - "images/Night_PosX.jpg", - "textures/Night_PosX.texture", - "images/Night_NegZ.jpg", - "textures/Night_NegZ.texture", - "images/Night_PosZ.jpg", - "textures/Night_PosZ.texture" - ], - "name": "root", - "ref": "root.group" - }, - "textures/Night_NegX.texture": { - "anisotropy": 1, - "fileName": "Night_NegX.jpg", - "flipY": true, - "magFilter": "Bilinear", - "minFilter": "Trilinear", - "name": "Night_NegX", - "offset": [ - 0, - 0 - ], - "ref": "textures/Night_NegX.texture", - "repeat": [ - 1, - 1 - ], - "url": "images/Night_NegX.jpg", - "wrapU": "Repeat", - "wrapV": "Repeat" - }, - "textures/Night_NegY.texture": { - "anisotropy": 1, - "fileName": "Night_NegY.jpg", - "flipY": true, - "magFilter": "Bilinear", - "minFilter": "Trilinear", - "name": "Night_NegY", - "offset": [ - 0, - 0 - ], - "ref": "textures/Night_NegY.texture", - "repeat": [ - 1, - 1 - ], - "url": "images/Night_NegY.jpg", - "wrapU": "Repeat", - "wrapV": "Repeat" - }, - "textures/Night_NegZ.texture": { - "anisotropy": 1, - "fileName": "Night_NegZ.jpg", - "flipY": true, - "magFilter": "Bilinear", - "minFilter": "Trilinear", - "name": "Night_NegZ", - "offset": [ - 0, - 0 - ], - "ref": "textures/Night_NegZ.texture", - "repeat": [ - 1, - 1 - ], - "url": "images/Night_NegZ.jpg", - "wrapU": "Repeat", - "wrapV": "Repeat" - }, - "textures/Night_PosX.texture": { - "anisotropy": 1, - "fileName": "Night_PosX.jpg", - "flipY": true, - "magFilter": "Bilinear", - "minFilter": "Trilinear", - "name": "Night_PosX", - "offset": [ - 0, - 0 - ], - "ref": "textures/Night_PosX.texture", - "repeat": [ - 1, - 1 - ], - "url": "images/Night_PosX.jpg", - "wrapU": "Repeat", - "wrapV": "Repeat" - }, - "textures/Night_PosY.texture": { - "anisotropy": 1, - "fileName": "Night_PosY.jpg", - "flipY": true, - "magFilter": "Bilinear", - "minFilter": "Trilinear", - "name": "Night_PosY", - "offset": [ - 0, - 0 - ], - "ref": "textures/Night_PosY.texture", - "repeat": [ - 1, - 1 - ], - "url": "images/Night_PosY.jpg", - "wrapU": "Repeat", - "wrapV": "Repeat" - }, - "textures/Night_PosZ.texture": { - "anisotropy": 1, - "fileName": "Night_PosZ.jpg", - "flipY": true, - "magFilter": "Bilinear", - "minFilter": "Trilinear", - "name": "Night_PosZ", - "offset": [ - 0, - 0 - ], - "ref": "textures/Night_PosZ.texture", - "repeat": [ - 1, - 1 - ], - "url": "images/Night_PosZ.jpg", - "wrapU": "Repeat", - "wrapV": "Repeat" } } \ No newline at end of file