diff --git a/changelog.txt b/changelog.txt index cdec6e2..76d3b9d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,59 +2,4 @@ -cleaned up comments -cleaned up some "test" files -updated linux stuff --rotation texture error (bird's eye): - -1 = top - -2 = bottom - -3 = west - -4 = east - -5 = north - -6 = south - -## stole this from sledge. let's have a look at what this means - - public void AlignTextureToWorld() - { - // Set the U and V axes to match the X, Y, or Z axes - // How they are calculated depends on which direction the plane is facing - - var direction = Plane.GetClosestAxisToNormal(); - - // VHE behaviour: - // U axis: If the closest axis to the normal is the X axis, - // the U axis is UnitY. Otherwise, the U axis is UnitX. - // V axis: If the closest axis to the normal is the Z axis, - // the V axis is -UnitY. Otherwise, the V axis is -UnitZ. - - Texture.UAxis = direction == Coordinate.UnitX ? Coordinate.UnitY : Coordinate.UnitX; - Texture.VAxis = direction == Coordinate.UnitZ ? -Coordinate.UnitY : -Coordinate.UnitZ; - Texture.Rotation = 0; - - CalculateTextureCoordinates(true); - } - # what it references - ## plane.get - public Coordinate GetClosestAxisToNormal() - { - // VHE prioritises the axes in order of X, Y, Z. - var norm = Normal.Absolute(); - - if (norm.X >= norm.Y && norm.X >= norm.Z) return Coordinate.UnitX; ##IF DISTANCE FROM X is grequal THAN Y AND Z furthest is X - if (norm.Y >= norm.Z) return Coordinate.UnitY; - return Coordinate.UnitZ; - } - ### coordinate.unit x/y/z - public readonly static Coordinate UnitX = new Coordinate(1, 0, 0); - public readonly static Coordinate UnitY = new Coordinate(0, 1, 0); - public readonly static Coordinate UnitZ = new Coordinate(0, 0, 1); - - - FROM WHAT I GLEAM - - the "normal" is the midpoint of a side. so if it's closest to the x axis, the uaxis variable will look like "uaxis" "[0 1 0 1] 0.25". - otherwise, it's "uaxis" "[-1 0 0 1] 0.25" - - if the normal is closest to the Z axis, the vaxis variable is "uaxis" "[0 -1 0 1] 0.25". otherwise it's "uaxis" "[0 0 -1 1] 0.25" - - what we can do to calculate the norm for each side is go through each variable side (each side is xyz1,xyz2,xyz3 and so on) and get the normal for each, then calculating what uaxis and vaxis should be used. I reckon the tough part might be replacing the u and vaxis variables in the string, but we can probably use a .replace() with a times replaced as 1. Also, that might be a bit tough since we don't know what exactly the uaxis/vaxis values are. - - TO FIND THE NORMAL: http://tutorial.math.lamar.edu/Classes/CalcIII/EqnsOfPlanes.aspx +-FIXED TEXTURE BUG!! (praise allah!) diff --git a/createPrefab.py b/createPrefab.py index 915d0ad..9e755ef 100644 --- a/createPrefab.py +++ b/createPrefab.py @@ -253,6 +253,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r """ values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) @@ -522,7 +557,18 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r elif letter == "\"": eval(which_list).append(letter) - eval(which_list).insert(-2, "[1 0 0 1] 0.25") + eval(which_list).insert(-2, "[AXIS_REPLACE_U] 0.25") + elif "\"vaxis\"" in line: + quote_num = 0 + for letter in line: + if letter == "\"": + quote_num += 1 + if quote_num != 3: + eval(which_list).append(letter) + elif letter == "\"": + eval(which_list).append(letter) + + eval(which_list).insert(-2, "[AXIS_REPLACE_U] 0.25") else: eval(which_list).append(line) diff --git a/prefab_template/add_template.txt b/prefab_template/add_template.txt new file mode 100644 index 0000000..ac98d5b --- /dev/null +++ b/prefab_template/add_template.txt @@ -0,0 +1,34 @@ + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) \ No newline at end of file diff --git a/prefab_template/ammo_hut.txt b/prefab_template/ammo_hut.txt index 40bca36..e849db2 100644 --- a/prefab_template/ammo_hut.txt +++ b/prefab_template/ammo_hut.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,8 +234,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,8 +245,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,8 +256,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,8 +267,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,8 +278,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -289,8 +289,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -310,8 +310,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,8 +321,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -332,8 +332,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -343,8 +343,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -354,8 +354,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -365,8 +365,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/bl_spire.txt b/prefab_template/bl_spire.txt index 2435329..53386bf 100644 --- a/prefab_template/bl_spire.txt +++ b/prefab_template/bl_spire.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/corner.txt b/prefab_template/corner.txt index a86deeb..1db5e24 100644 --- a/prefab_template/corner.txt +++ b/prefab_template/corner.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/corner_egypt.txt b/prefab_template/corner_egypt.txt index 17bb14f..899ffd7 100644 --- a/prefab_template/corner_egypt.txt +++ b/prefab_template/corner_egypt.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -100,8 +100,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -194,8 +194,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -288,8 +288,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -382,8 +382,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -476,8 +476,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -580,8 +580,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -591,8 +591,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -602,8 +602,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -613,8 +613,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -624,8 +624,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -635,8 +635,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -656,8 +656,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -667,8 +667,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -678,8 +678,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -689,8 +689,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -700,8 +700,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -711,8 +711,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -732,8 +732,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -743,8 +743,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -754,8 +754,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -765,8 +765,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -776,8 +776,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -787,8 +787,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -808,8 +808,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -819,8 +819,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -830,8 +830,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -841,8 +841,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -852,8 +852,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -863,8 +863,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -884,8 +884,8 @@ "id" "id_num" "plane" "(x91 y91 z91) (x92 y92 z92) (x93 y93 z93)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -895,8 +895,8 @@ "id" "id_num" "plane" "(x94 y94 z94) (x95 y95 z95) (x96 y96 z96)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -906,8 +906,8 @@ "id" "id_num" "plane" "(x97 y97 z97) (x98 y98 z98) (x99 y99 z99)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -917,8 +917,8 @@ "id" "id_num" "plane" "(x100 y100 z100) (x101 y101 z101) (x102 y102 z102)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -928,8 +928,8 @@ "id" "id_num" "plane" "(x103 y103 z103) (x104 y104 z104) (x105 y105 z105)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -939,8 +939,8 @@ "id" "id_num" "plane" "(x106 y106 z106) (x107 y107 z107) (x108 y108 z108)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -960,8 +960,8 @@ "id" "id_num" "plane" "(x109 y109 z109) (x110 y110 z110) (x111 y111 z111)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -971,8 +971,8 @@ "id" "id_num" "plane" "(x112 y112 z112) (x113 y113 z113) (x114 y114 z114)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -982,8 +982,8 @@ "id" "id_num" "plane" "(x115 y115 z115) (x116 y116 z116) (x117 y117 z117)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -993,8 +993,8 @@ "id" "id_num" "plane" "(x118 y118 z118) (x119 y119 z119) (x120 y120 z120)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1004,8 +1004,8 @@ "id" "id_num" "plane" "(x121 y121 z121) (x122 y122 z122) (x123 y123 z123)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1015,8 +1015,8 @@ "id" "id_num" "plane" "(x124 y124 z124) (x125 y125 z125) (x126 y126 z126)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/corner_stone.txt b/prefab_template/corner_stone.txt index 079abbe..ebad1c4 100644 --- a/prefab_template/corner_stone.txt +++ b/prefab_template/corner_stone.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/cp_koth_prefab.txt b/prefab_template/cp_koth_prefab.txt index 401f772..b831973 100644 --- a/prefab_template/cp_koth_prefab.txt +++ b/prefab_template/cp_koth_prefab.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/death_pit.txt b/prefab_template/death_pit.txt index c14ea6d..1dd54c3 100644 --- a/prefab_template/death_pit.txt +++ b/prefab_template/death_pit.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,8 +234,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,8 +245,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,8 +256,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,8 +267,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,8 +278,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -289,8 +289,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -310,8 +310,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,8 +321,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -332,8 +332,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -343,8 +343,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -354,8 +354,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -365,8 +365,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -386,8 +386,8 @@ "id" "id_num" "plane" "(x91 y91 z91) (x92 y92 z92) (x93 y93 z93)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -397,8 +397,8 @@ "id" "id_num" "plane" "(x94 y94 z94) (x95 y95 z95) (x96 y96 z96)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -408,8 +408,8 @@ "id" "id_num" "plane" "(x97 y97 z97) (x98 y98 z98) (x99 y99 z99)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -419,8 +419,8 @@ "id" "id_num" "plane" "(x100 y100 z100) (x101 y101 z101) (x102 y102 z102)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -430,8 +430,8 @@ "id" "id_num" "plane" "(x103 y103 z103) (x104 y104 z104) (x105 y105 z105)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -441,8 +441,8 @@ "id" "id_num" "plane" "(x106 y106 z106) (x107 y107 z107) (x108 y108 z108)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -463,8 +463,8 @@ "id" "id_num" "plane" "(x109 y109 z109) (x110 y110 z110) (x111 y111 z111)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -474,8 +474,8 @@ "id" "id_num" "plane" "(x112 y112 z112) (x113 y113 z113) (x114 y114 z114)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -485,8 +485,8 @@ "id" "id_num" "plane" "(x115 y115 z115) (x116 y116 z116) (x117 y117 z117)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -496,8 +496,8 @@ "id" "id_num" "plane" "(x118 y118 z118) (x119 y119 z119) (x120 y120 z120)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -507,8 +507,8 @@ "id" "id_num" "plane" "(x121 y121 z121) (x122 y122 z122) (x123 y123 z123)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -518,8 +518,8 @@ "id" "id_num" "plane" "(x124 y124 z124) (x125 y125 z125) (x126 y126 z126)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -540,8 +540,8 @@ "id" "id_num" "plane" "(x127 y127 z127) (x128 y128 z128) (x129 y129 z129)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -551,8 +551,8 @@ "id" "id_num" "plane" "(x130 y130 z130) (x131 y131 z131) (x132 y132 z132)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -562,8 +562,8 @@ "id" "id_num" "plane" "(x133 y133 z133) (x134 y134 z134) (x135 y135 z135)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -573,8 +573,8 @@ "id" "id_num" "plane" "(x136 y136 z136) (x137 y137 z137) (x138 y138 z138)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -584,8 +584,8 @@ "id" "id_num" "plane" "(x139 y139 z139) (x140 y140 z140) (x141 y141 z141)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -595,8 +595,8 @@ "id" "id_num" "plane" "(x142 y142 z142) (x143 y143 z143) (x144 y144 z144)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -617,8 +617,8 @@ "id" "id_num" "plane" "(x145 y145 z145) (x146 y146 z146) (x147 y147 z147)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -628,8 +628,8 @@ "id" "id_num" "plane" "(x148 y148 z148) (x149 y149 z149) (x150 y150 z150)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -639,8 +639,8 @@ "id" "id_num" "plane" "(x151 y151 z151) (x152 y152 z152) (x153 y153 z153)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -650,8 +650,8 @@ "id" "id_num" "plane" "(x154 y154 z154) (x155 y155 z155) (x156 y156 z156)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -661,8 +661,8 @@ "id" "id_num" "plane" "(x157 y157 z157) (x158 y158 z158) (x159 y159 z159)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -672,8 +672,8 @@ "id" "id_num" "plane" "(x160 y160 z160) (x161 y161 z161) (x162 y162 z162)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -694,8 +694,8 @@ "id" "id_num" "plane" "(x163 y163 z163) (x164 y164 z164) (x165 y165 z165)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -705,8 +705,8 @@ "id" "id_num" "plane" "(x166 y166 z166) (x167 y167 z167) (x168 y168 z168)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -716,8 +716,8 @@ "id" "id_num" "plane" "(x169 y169 z169) (x170 y170 z170) (x171 y171 z171)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -727,8 +727,8 @@ "id" "id_num" "plane" "(x172 y172 z172) (x173 y173 z173) (x174 y174 z174)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -738,8 +738,8 @@ "id" "id_num" "plane" "(x175 y175 z175) (x176 y176 z176) (x177 y177 z177)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -759,8 +759,8 @@ "id" "id_num" "plane" "(x178 y178 z178) (x179 y179 z179) (x180 y180 z180)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -770,8 +770,8 @@ "id" "id_num" "plane" "(x181 y181 z181) (x182 y182 z182) (x183 y183 z183)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -781,8 +781,8 @@ "id" "id_num" "plane" "(x184 y184 z184) (x185 y185 z185) (x186 y186 z186)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -792,8 +792,8 @@ "id" "id_num" "plane" "(x187 y187 z187) (x188 y188 z188) (x189 y189 z189)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -803,8 +803,8 @@ "id" "id_num" "plane" "(x190 y190 z190) (x191 y191 z191) (x192 y192 z192)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -824,8 +824,8 @@ "id" "id_num" "plane" "(x193 y193 z193) (x194 y194 z194) (x195 y195 z195)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -835,8 +835,8 @@ "id" "id_num" "plane" "(x196 y196 z196) (x197 y197 z197) (x198 y198 z198)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -846,8 +846,8 @@ "id" "id_num" "plane" "(x199 y199 z199) (x200 y200 z200) (x201 y201 z201)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -857,8 +857,8 @@ "id" "id_num" "plane" "(x202 y202 z202) (x203 y203 z203) (x204 y204 z204)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -868,8 +868,8 @@ "id" "id_num" "plane" "(x205 y205 z205) (x206 y206 z206) (x207 y207 z207)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -889,8 +889,8 @@ "id" "id_num" "plane" "(x208 y208 z208) (x209 y209 z209) (x210 y210 z210)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -900,8 +900,8 @@ "id" "id_num" "plane" "(x211 y211 z211) (x212 y212 z212) (x213 y213 z213)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -911,8 +911,8 @@ "id" "id_num" "plane" "(x214 y214 z214) (x215 y215 z215) (x216 y216 z216)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -922,8 +922,8 @@ "id" "id_num" "plane" "(x217 y217 z217) (x218 y218 z218) (x219 y219 z219)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -933,8 +933,8 @@ "id" "id_num" "plane" "(x220 y220 z220) (x221 y221 z221) (x222 y222 z222)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -954,8 +954,8 @@ "id" "id_num" "plane" "(x223 y223 z223) (x224 y224 z224) (x225 y225 z225)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -965,8 +965,8 @@ "id" "id_num" "plane" "(x226 y226 z226) (x227 y227 z227) (x228 y228 z228)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -976,8 +976,8 @@ "id" "id_num" "plane" "(x229 y229 z229) (x230 y230 z230) (x231 y231 z231)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -987,8 +987,8 @@ "id" "id_num" "plane" "(x232 y232 z232) (x233 y233 z233) (x234 y234 z234)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -998,8 +998,8 @@ "id" "id_num" "plane" "(x235 y235 z235) (x236 y236 z236) (x237 y237 z237)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1019,8 +1019,8 @@ "id" "id_num" "plane" "(x238 y238 z238) (x239 y239 z239) (x240 y240 z240)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1030,8 +1030,8 @@ "id" "id_num" "plane" "(x241 y241 z241) (x242 y242 z242) (x243 y243 z243)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1041,8 +1041,8 @@ "id" "id_num" "plane" "(x244 y244 z244) (x245 y245 z245) (x246 y246 z246)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1052,8 +1052,8 @@ "id" "id_num" "plane" "(x247 y247 z247) (x248 y248 z248) (x249 y249 z249)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1063,8 +1063,8 @@ "id" "id_num" "plane" "(x250 y250 z250) (x251 y251 z251) (x252 y252 z252)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1084,8 +1084,8 @@ "id" "id_num" "plane" "(x253 y253 z253) (x254 y254 z254) (x255 y255 z255)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1095,8 +1095,8 @@ "id" "id_num" "plane" "(x256 y256 z256) (x257 y257 z257) (x258 y258 z258)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1106,8 +1106,8 @@ "id" "id_num" "plane" "(x259 y259 z259) (x260 y260 z260) (x261 y261 z261)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1117,8 +1117,8 @@ "id" "id_num" "plane" "(x262 y262 z262) (x263 y263 z263) (x264 y264 z264)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1128,8 +1128,8 @@ "id" "id_num" "plane" "(x265 y265 z265) (x266 y266 z266) (x267 y267 z267)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1149,8 +1149,8 @@ "id" "id_num" "plane" "(x268 y268 z268) (x269 y269 z269) (x270 y270 z270)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1160,8 +1160,8 @@ "id" "id_num" "plane" "(x271 y271 z271) (x272 y272 z272) (x273 y273 z273)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1171,8 +1171,8 @@ "id" "id_num" "plane" "(x274 y274 z274) (x275 y275 z275) (x276 y276 z276)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1182,8 +1182,8 @@ "id" "id_num" "plane" "(x277 y277 z277) (x278 y278 z278) (x279 y279 z279)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1193,8 +1193,8 @@ "id" "id_num" "plane" "(x280 y280 z280) (x281 y281 z281) (x282 y282 z282)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1214,7 +1214,7 @@ "id" "id_num" "plane" "(x283 y283 z283) (x284 y284 z284) (x285 y285 z285)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1225,8 +1225,8 @@ "id" "id_num" "plane" "(x286 y286 z286) (x287 y287 z287) (x288 y288 z288)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1236,8 +1236,8 @@ "id" "id_num" "plane" "(x289 y289 z289) (x290 y290 z290) (x291 y291 z291)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1247,8 +1247,8 @@ "id" "id_num" "plane" "(x292 y292 z292) (x293 y293 z293) (x294 y294 z294)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1258,8 +1258,8 @@ "id" "id_num" "plane" "(x295 y295 z295) (x296 y296 z296) (x297 y297 z297)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1279,7 +1279,7 @@ "id" "id_num" "plane" "(x298 y298 z298) (x299 y299 z299) (x300 y300 z300)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1290,8 +1290,8 @@ "id" "id_num" "plane" "(x301 y301 z301) (x302 y302 z302) (x303 y303 z303)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1301,8 +1301,8 @@ "id" "id_num" "plane" "(x304 y304 z304) (x305 y305 z305) (x306 y306 z306)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1312,8 +1312,8 @@ "id" "id_num" "plane" "(x307 y307 z307) (x308 y308 z308) (x309 y309 z309)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1323,8 +1323,8 @@ "id" "id_num" "plane" "(x310 y310 z310) (x311 y311 z311) (x312 y312 z312)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1344,7 +1344,7 @@ "id" "id_num" "plane" "(x313 y313 z313) (x314 y314 z314) (x315 y315 z315)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1355,8 +1355,8 @@ "id" "id_num" "plane" "(x316 y316 z316) (x317 y317 z317) (x318 y318 z318)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1366,8 +1366,8 @@ "id" "id_num" "plane" "(x319 y319 z319) (x320 y320 z320) (x321 y321 z321)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1377,8 +1377,8 @@ "id" "id_num" "plane" "(x322 y322 z322) (x323 y323 z323) (x324 y324 z324)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1388,8 +1388,8 @@ "id" "id_num" "plane" "(x325 y325 z325) (x326 y326 z326) (x327 y327 z327)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1409,7 +1409,7 @@ "id" "id_num" "plane" "(x328 y328 z328) (x329 y329 z329) (x330 y330 z330)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1420,8 +1420,8 @@ "id" "id_num" "plane" "(x331 y331 z331) (x332 y332 z332) (x333 y333 z333)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1431,8 +1431,8 @@ "id" "id_num" "plane" "(x334 y334 z334) (x335 y335 z335) (x336 y336 z336)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1442,8 +1442,8 @@ "id" "id_num" "plane" "(x337 y337 z337) (x338 y338 z338) (x339 y339 z339)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1453,8 +1453,8 @@ "id" "id_num" "plane" "(x340 y340 z340) (x341 y341 z341) (x342 y342 z342)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1474,7 +1474,7 @@ "id" "id_num" "plane" "(x343 y343 z343) (x344 y344 z344) (x345 y345 z345)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1485,8 +1485,8 @@ "id" "id_num" "plane" "(x346 y346 z346) (x347 y347 z347) (x348 y348 z348)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1496,8 +1496,8 @@ "id" "id_num" "plane" "(x349 y349 z349) (x350 y350 z350) (x351 y351 z351)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1507,8 +1507,8 @@ "id" "id_num" "plane" "(x352 y352 z352) (x353 y353 z353) (x354 y354 z354)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1518,8 +1518,8 @@ "id" "id_num" "plane" "(x355 y355 z355) (x356 y356 z356) (x357 y357 z357)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1539,7 +1539,7 @@ "id" "id_num" "plane" "(x358 y358 z358) (x359 y359 z359) (x360 y360 z360)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1550,8 +1550,8 @@ "id" "id_num" "plane" "(x361 y361 z361) (x362 y362 z362) (x363 y363 z363)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1561,8 +1561,8 @@ "id" "id_num" "plane" "(x364 y364 z364) (x365 y365 z365) (x366 y366 z366)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1572,8 +1572,8 @@ "id" "id_num" "plane" "(x367 y367 z367) (x368 y368 z368) (x369 y369 z369)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1583,8 +1583,8 @@ "id" "id_num" "plane" "(x370 y370 z370) (x371 y371 z371) (x372 y372 z372)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1604,7 +1604,7 @@ "id" "id_num" "plane" "(x373 y373 z373) (x374 y374 z374) (x375 y375 z375)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1615,8 +1615,8 @@ "id" "id_num" "plane" "(x376 y376 z376) (x377 y377 z377) (x378 y378 z378)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1626,8 +1626,8 @@ "id" "id_num" "plane" "(x379 y379 z379) (x380 y380 z380) (x381 y381 z381)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1637,8 +1637,8 @@ "id" "id_num" "plane" "(x382 y382 z382) (x383 y383 z383) (x384 y384 z384)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1648,8 +1648,8 @@ "id" "id_num" "plane" "(x385 y385 z385) (x386 y386 z386) (x387 y387 z387)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1669,7 +1669,7 @@ "id" "id_num" "plane" "(x388 y388 z388) (x389 y389 z389) (x390 y390 z390)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1680,8 +1680,8 @@ "id" "id_num" "plane" "(x391 y391 z391) (x392 y392 z392) (x393 y393 z393)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1691,8 +1691,8 @@ "id" "id_num" "plane" "(x394 y394 z394) (x395 y395 z395) (x396 y396 z396)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1702,8 +1702,8 @@ "id" "id_num" "plane" "(x397 y397 z397) (x398 y398 z398) (x399 y399 z399)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1713,8 +1713,8 @@ "id" "id_num" "plane" "(x400 y400 z400) (x401 y401 z401) (x402 y402 z402)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1734,8 +1734,8 @@ "id" "id_num" "plane" "(x403 y403 z403) (x404 y404 z404) (x405 y405 z405)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1745,8 +1745,8 @@ "id" "id_num" "plane" "(x406 y406 z406) (x407 y407 z407) (x408 y408 z408)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1756,8 +1756,8 @@ "id" "id_num" "plane" "(x409 y409 z409) (x410 y410 z410) (x411 y411 z411)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1767,8 +1767,8 @@ "id" "id_num" "plane" "(x412 y412 z412) (x413 y413 z413) (x414 y414 z414)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1778,8 +1778,8 @@ "id" "id_num" "plane" "(x415 y415 z415) (x416 y416 z416) (x417 y417 z417)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1799,8 +1799,8 @@ "id" "id_num" "plane" "(x418 y418 z418) (x419 y419 z419) (x420 y420 z420)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1810,8 +1810,8 @@ "id" "id_num" "plane" "(x421 y421 z421) (x422 y422 z422) (x423 y423 z423)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1821,8 +1821,8 @@ "id" "id_num" "plane" "(x424 y424 z424) (x425 y425 z425) (x426 y426 z426)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1832,8 +1832,8 @@ "id" "id_num" "plane" "(x427 y427 z427) (x428 y428 z428) (x429 y429 z429)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1843,8 +1843,8 @@ "id" "id_num" "plane" "(x430 y430 z430) (x431 y431 z431) (x432 y432 z432)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1864,8 +1864,8 @@ "id" "id_num" "plane" "(x433 y433 z433) (x434 y434 z434) (x435 y435 z435)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1875,8 +1875,8 @@ "id" "id_num" "plane" "(x436 y436 z436) (x437 y437 z437) (x438 y438 z438)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1886,8 +1886,8 @@ "id" "id_num" "plane" "(x439 y439 z439) (x440 y440 z440) (x441 y441 z441)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1897,8 +1897,8 @@ "id" "id_num" "plane" "(x442 y442 z442) (x443 y443 z443) (x444 y444 z444)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1908,8 +1908,8 @@ "id" "id_num" "plane" "(x445 y445 z445) (x446 y446 z446) (x447 y447 z447)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1929,8 +1929,8 @@ "id" "id_num" "plane" "(x448 y448 z448) (x449 y449 z449) (x450 y450 z450)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1940,8 +1940,8 @@ "id" "id_num" "plane" "(x451 y451 z451) (x452 y452 z452) (x453 y453 z453)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1951,8 +1951,8 @@ "id" "id_num" "plane" "(x454 y454 z454) (x455 y455 z455) (x456 y456 z456)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1962,8 +1962,8 @@ "id" "id_num" "plane" "(x457 y457 z457) (x458 y458 z458) (x459 y459 z459)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1973,8 +1973,8 @@ "id" "id_num" "plane" "(x460 y460 z460) (x461 y461 z461) (x462 y462 z462)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1994,8 +1994,8 @@ "id" "id_num" "plane" "(x463 y463 z463) (x464 y464 z464) (x465 y465 z465)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2005,8 +2005,8 @@ "id" "id_num" "plane" "(x466 y466 z466) (x467 y467 z467) (x468 y468 z468)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2016,8 +2016,8 @@ "id" "id_num" "plane" "(x469 y469 z469) (x470 y470 z470) (x471 y471 z471)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2027,8 +2027,8 @@ "id" "id_num" "plane" "(x472 y472 z472) (x473 y473 z473) (x474 y474 z474)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2038,8 +2038,8 @@ "id" "id_num" "plane" "(x475 y475 z475) (x476 y476 z476) (x477 y477 z477)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2059,8 +2059,8 @@ "id" "id_num" "plane" "(x478 y478 z478) (x479 y479 z479) (x480 y480 z480)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2070,8 +2070,8 @@ "id" "id_num" "plane" "(x481 y481 z481) (x482 y482 z482) (x483 y483 z483)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2081,8 +2081,8 @@ "id" "id_num" "plane" "(x484 y484 z484) (x485 y485 z485) (x486 y486 z486)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2092,8 +2092,8 @@ "id" "id_num" "plane" "(x487 y487 z487) (x488 y488 z488) (x489 y489 z489)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2103,8 +2103,8 @@ "id" "id_num" "plane" "(x490 y490 z490) (x491 y491 z491) (x492 y492 z492)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2124,8 +2124,8 @@ "id" "id_num" "plane" "(x493 y493 z493) (x494 y494 z494) (x495 y495 z495)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2135,8 +2135,8 @@ "id" "id_num" "plane" "(x496 y496 z496) (x497 y497 z497) (x498 y498 z498)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2146,8 +2146,8 @@ "id" "id_num" "plane" "(x499 y499 z499) (x500 y500 z500) (x501 y501 z501)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2157,8 +2157,8 @@ "id" "id_num" "plane" "(x502 y502 z502) (x503 y503 z503) (x504 y504 z504)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2168,8 +2168,8 @@ "id" "id_num" "plane" "(x505 y505 z505) (x506 y506 z506) (x507 y507 z507)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2189,8 +2189,8 @@ "id" "id_num" "plane" "(x508 y508 z508) (x509 y509 z509) (x510 y510 z510)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2200,8 +2200,8 @@ "id" "id_num" "plane" "(x511 y511 z511) (x512 y512 z512) (x513 y513 z513)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2211,8 +2211,8 @@ "id" "id_num" "plane" "(x514 y514 z514) (x515 y515 z515) (x516 y516 z516)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2222,8 +2222,8 @@ "id" "id_num" "plane" "(x517 y517 z517) (x518 y518 z518) (x519 y519 z519)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2233,8 +2233,8 @@ "id" "id_num" "plane" "(x520 y520 z520) (x521 y521 z521) (x522 y522 z522)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2254,7 +2254,7 @@ "id" "id_num" "plane" "(x523 y523 z523) (x524 y524 z524) (x525 y525 z525)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2265,8 +2265,8 @@ "id" "id_num" "plane" "(x526 y526 z526) (x527 y527 z527) (x528 y528 z528)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2276,8 +2276,8 @@ "id" "id_num" "plane" "(x529 y529 z529) (x530 y530 z530) (x531 y531 z531)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2287,8 +2287,8 @@ "id" "id_num" "plane" "(x532 y532 z532) (x533 y533 z533) (x534 y534 z534)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2298,8 +2298,8 @@ "id" "id_num" "plane" "(x535 y535 z535) (x536 y536 z536) (x537 y537 z537)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2319,7 +2319,7 @@ "id" "id_num" "plane" "(x538 y538 z538) (x539 y539 z539) (x540 y540 z540)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2330,8 +2330,8 @@ "id" "id_num" "plane" "(x541 y541 z541) (x542 y542 z542) (x543 y543 z543)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2341,8 +2341,8 @@ "id" "id_num" "plane" "(x544 y544 z544) (x545 y545 z545) (x546 y546 z546)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2352,8 +2352,8 @@ "id" "id_num" "plane" "(x547 y547 z547) (x548 y548 z548) (x549 y549 z549)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2363,8 +2363,8 @@ "id" "id_num" "plane" "(x550 y550 z550) (x551 y551 z551) (x552 y552 z552)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2384,7 +2384,7 @@ "id" "id_num" "plane" "(x553 y553 z553) (x554 y554 z554) (x555 y555 z555)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2395,8 +2395,8 @@ "id" "id_num" "plane" "(x556 y556 z556) (x557 y557 z557) (x558 y558 z558)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2406,8 +2406,8 @@ "id" "id_num" "plane" "(x559 y559 z559) (x560 y560 z560) (x561 y561 z561)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2417,8 +2417,8 @@ "id" "id_num" "plane" "(x562 y562 z562) (x563 y563 z563) (x564 y564 z564)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2428,8 +2428,8 @@ "id" "id_num" "plane" "(x565 y565 z565) (x566 y566 z566) (x567 y567 z567)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2449,7 +2449,7 @@ "id" "id_num" "plane" "(x568 y568 z568) (x569 y569 z569) (x570 y570 z570)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2460,8 +2460,8 @@ "id" "id_num" "plane" "(x571 y571 z571) (x572 y572 z572) (x573 y573 z573)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2471,8 +2471,8 @@ "id" "id_num" "plane" "(x574 y574 z574) (x575 y575 z575) (x576 y576 z576)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2482,8 +2482,8 @@ "id" "id_num" "plane" "(x577 y577 z577) (x578 y578 z578) (x579 y579 z579)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2493,8 +2493,8 @@ "id" "id_num" "plane" "(x580 y580 z580) (x581 y581 z581) (x582 y582 z582)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2514,7 +2514,7 @@ "id" "id_num" "plane" "(x583 y583 z583) (x584 y584 z584) (x585 y585 z585)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2525,8 +2525,8 @@ "id" "id_num" "plane" "(x586 y586 z586) (x587 y587 z587) (x588 y588 z588)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2536,8 +2536,8 @@ "id" "id_num" "plane" "(x589 y589 z589) (x590 y590 z590) (x591 y591 z591)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2547,8 +2547,8 @@ "id" "id_num" "plane" "(x592 y592 z592) (x593 y593 z593) (x594 y594 z594)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2558,8 +2558,8 @@ "id" "id_num" "plane" "(x595 y595 z595) (x596 y596 z596) (x597 y597 z597)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2579,7 +2579,7 @@ "id" "id_num" "plane" "(x598 y598 z598) (x599 y599 z599) (x600 y600 z600)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2590,8 +2590,8 @@ "id" "id_num" "plane" "(x601 y601 z601) (x602 y602 z602) (x603 y603 z603)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2601,8 +2601,8 @@ "id" "id_num" "plane" "(x604 y604 z604) (x605 y605 z605) (x606 y606 z606)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2612,8 +2612,8 @@ "id" "id_num" "plane" "(x607 y607 z607) (x608 y608 z608) (x609 y609 z609)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2623,8 +2623,8 @@ "id" "id_num" "plane" "(x610 y610 z610) (x611 y611 z611) (x612 y612 z612)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2644,7 +2644,7 @@ "id" "id_num" "plane" "(x613 y613 z613) (x614 y614 z614) (x615 y615 z615)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2655,8 +2655,8 @@ "id" "id_num" "plane" "(x616 y616 z616) (x617 y617 z617) (x618 y618 z618)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2666,8 +2666,8 @@ "id" "id_num" "plane" "(x619 y619 z619) (x620 y620 z620) (x621 y621 z621)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2677,8 +2677,8 @@ "id" "id_num" "plane" "(x622 y622 z622) (x623 y623 z623) (x624 y624 z624)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2688,8 +2688,8 @@ "id" "id_num" "plane" "(x625 y625 z625) (x626 y626 z626) (x627 y627 z627)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2709,7 +2709,7 @@ "id" "id_num" "plane" "(x628 y628 z628) (x629 y629 z629) (x630 y630 z630)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2720,8 +2720,8 @@ "id" "id_num" "plane" "(x631 y631 z631) (x632 y632 z632) (x633 y633 z633)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2731,8 +2731,8 @@ "id" "id_num" "plane" "(x634 y634 z634) (x635 y635 z635) (x636 y636 z636)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2742,8 +2742,8 @@ "id" "id_num" "plane" "(x637 y637 z637) (x638 y638 z638) (x639 y639 z639)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2753,8 +2753,8 @@ "id" "id_num" "plane" "(x640 y640 z640) (x641 y641 z641) (x642 y642 z642)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2774,7 +2774,7 @@ "id" "id_num" "plane" "(x643 y643 z643) (x644 y644 z644) (x645 y645 z645)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2785,8 +2785,8 @@ "id" "id_num" "plane" "(x646 y646 z646) (x647 y647 z647) (x648 y648 z648)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2796,8 +2796,8 @@ "id" "id_num" "plane" "(x649 y649 z649) (x650 y650 z650) (x651 y651 z651)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2807,8 +2807,8 @@ "id" "id_num" "plane" "(x652 y652 z652) (x653 y653 z653) (x654 y654 z654)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2818,8 +2818,8 @@ "id" "id_num" "plane" "(x655 y655 z655) (x656 y656 z656) (x657 y657 z657)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2839,7 +2839,7 @@ "id" "id_num" "plane" "(x658 y658 z658) (x659 y659 z659) (x660 y660 z660)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2850,8 +2850,8 @@ "id" "id_num" "plane" "(x661 y661 z661) (x662 y662 z662) (x663 y663 z663)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2861,8 +2861,8 @@ "id" "id_num" "plane" "(x664 y664 z664) (x665 y665 z665) (x666 y666 z666)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2872,8 +2872,8 @@ "id" "id_num" "plane" "(x667 y667 z667) (x668 y668 z668) (x669 y669 z669)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2883,8 +2883,8 @@ "id" "id_num" "plane" "(x670 y670 z670) (x671 y671 z671) (x672 y672 z672)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2904,7 +2904,7 @@ "id" "id_num" "plane" "(x673 y673 z673) (x674 y674 z674) (x675 y675 z675)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2915,8 +2915,8 @@ "id" "id_num" "plane" "(x676 y676 z676) (x677 y677 z677) (x678 y678 z678)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2926,8 +2926,8 @@ "id" "id_num" "plane" "(x679 y679 z679) (x680 y680 z680) (x681 y681 z681)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2937,8 +2937,8 @@ "id" "id_num" "plane" "(x682 y682 z682) (x683 y683 z683) (x684 y684 z684)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2948,8 +2948,8 @@ "id" "id_num" "plane" "(x685 y685 z685) (x686 y686 z686) (x687 y687 z687)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2969,7 +2969,7 @@ "id" "id_num" "plane" "(x688 y688 z688) (x689 y689 z689) (x690 y690 z690)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2980,8 +2980,8 @@ "id" "id_num" "plane" "(x691 y691 z691) (x692 y692 z692) (x693 y693 z693)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2991,8 +2991,8 @@ "id" "id_num" "plane" "(x694 y694 z694) (x695 y695 z695) (x696 y696 z696)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3002,8 +3002,8 @@ "id" "id_num" "plane" "(x697 y697 z697) (x698 y698 z698) (x699 y699 z699)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3013,8 +3013,8 @@ "id" "id_num" "plane" "(x700 y700 z700) (x701 y701 z701) (x702 y702 z702)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3034,7 +3034,7 @@ "id" "id_num" "plane" "(x703 y703 z703) (x704 y704 z704) (x705 y705 z705)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3045,8 +3045,8 @@ "id" "id_num" "plane" "(x706 y706 z706) (x707 y707 z707) (x708 y708 z708)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3056,8 +3056,8 @@ "id" "id_num" "plane" "(x709 y709 z709) (x710 y710 z710) (x711 y711 z711)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3067,8 +3067,8 @@ "id" "id_num" "plane" "(x712 y712 z712) (x713 y713 z713) (x714 y714 z714)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3078,8 +3078,8 @@ "id" "id_num" "plane" "(x715 y715 z715) (x716 y716 z716) (x717 y717 z717)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3099,7 +3099,7 @@ "id" "id_num" "plane" "(x718 y718 z718) (x719 y719 z719) (x720 y720 z720)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3110,8 +3110,8 @@ "id" "id_num" "plane" "(x721 y721 z721) (x722 y722 z722) (x723 y723 z723)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3121,8 +3121,8 @@ "id" "id_num" "plane" "(x724 y724 z724) (x725 y725 z725) (x726 y726 z726)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3132,8 +3132,8 @@ "id" "id_num" "plane" "(x727 y727 z727) (x728 y728 z728) (x729 y729 z729)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3143,8 +3143,8 @@ "id" "id_num" "plane" "(x730 y730 z730) (x731 y731 z731) (x732 y732 z732)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3164,7 +3164,7 @@ "id" "id_num" "plane" "(x733 y733 z733) (x734 y734 z734) (x735 y735 z735)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3175,8 +3175,8 @@ "id" "id_num" "plane" "(x736 y736 z736) (x737 y737 z737) (x738 y738 z738)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3186,8 +3186,8 @@ "id" "id_num" "plane" "(x739 y739 z739) (x740 y740 z740) (x741 y741 z741)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3197,8 +3197,8 @@ "id" "id_num" "plane" "(x742 y742 z742) (x743 y743 z743) (x744 y744 z744)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3208,8 +3208,8 @@ "id" "id_num" "plane" "(x745 y745 z745) (x746 y746 z746) (x747 y747 z747)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3229,7 +3229,7 @@ "id" "id_num" "plane" "(x748 y748 z748) (x749 y749 z749) (x750 y750 z750)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3240,8 +3240,8 @@ "id" "id_num" "plane" "(x751 y751 z751) (x752 y752 z752) (x753 y753 z753)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3251,8 +3251,8 @@ "id" "id_num" "plane" "(x754 y754 z754) (x755 y755 z755) (x756 y756 z756)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3262,8 +3262,8 @@ "id" "id_num" "plane" "(x757 y757 z757) (x758 y758 z758) (x759 y759 z759)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3273,8 +3273,8 @@ "id" "id_num" "plane" "(x760 y760 z760) (x761 y761 z761) (x762 y762 z762)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3294,8 +3294,8 @@ "id" "id_num" "plane" "(x763 y763 z763) (x764 y764 z764) (x765 y765 z765)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3305,8 +3305,8 @@ "id" "id_num" "plane" "(x766 y766 z766) (x767 y767 z767) (x768 y768 z768)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3316,8 +3316,8 @@ "id" "id_num" "plane" "(x769 y769 z769) (x770 y770 z770) (x771 y771 z771)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3327,8 +3327,8 @@ "id" "id_num" "plane" "(x772 y772 z772) (x773 y773 z773) (x774 y774 z774)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3338,8 +3338,8 @@ "id" "id_num" "plane" "(x775 y775 z775) (x776 y776 z776) (x777 y777 z777)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3359,8 +3359,8 @@ "id" "id_num" "plane" "(x778 y778 z778) (x779 y779 z779) (x780 y780 z780)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3370,8 +3370,8 @@ "id" "id_num" "plane" "(x781 y781 z781) (x782 y782 z782) (x783 y783 z783)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3381,8 +3381,8 @@ "id" "id_num" "plane" "(x784 y784 z784) (x785 y785 z785) (x786 y786 z786)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3392,8 +3392,8 @@ "id" "id_num" "plane" "(x787 y787 z787) (x788 y788 z788) (x789 y789 z789)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3403,8 +3403,8 @@ "id" "id_num" "plane" "(x790 y790 z790) (x791 y791 z791) (x792 y792 z792)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3424,8 +3424,8 @@ "id" "id_num" "plane" "(x793 y793 z793) (x794 y794 z794) (x795 y795 z795)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3435,8 +3435,8 @@ "id" "id_num" "plane" "(x796 y796 z796) (x797 y797 z797) (x798 y798 z798)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3446,8 +3446,8 @@ "id" "id_num" "plane" "(x799 y799 z799) (x800 y800 z800) (x801 y801 z801)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3457,8 +3457,8 @@ "id" "id_num" "plane" "(x802 y802 z802) (x803 y803 z803) (x804 y804 z804)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3468,8 +3468,8 @@ "id" "id_num" "plane" "(x805 y805 z805) (x806 y806 z806) (x807 y807 z807)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3489,8 +3489,8 @@ "id" "id_num" "plane" "(x808 y808 z808) (x809 y809 z809) (x810 y810 z810)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3500,8 +3500,8 @@ "id" "id_num" "plane" "(x811 y811 z811) (x812 y812 z812) (x813 y813 z813)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3511,8 +3511,8 @@ "id" "id_num" "plane" "(x814 y814 z814) (x815 y815 z815) (x816 y816 z816)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3522,8 +3522,8 @@ "id" "id_num" "plane" "(x817 y817 z817) (x818 y818 z818) (x819 y819 z819)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3533,8 +3533,8 @@ "id" "id_num" "plane" "(x820 y820 z820) (x821 y821 z821) (x822 y822 z822)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3554,8 +3554,8 @@ "id" "id_num" "plane" "(x823 y823 z823) (x824 y824 z824) (x825 y825 z825)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3565,8 +3565,8 @@ "id" "id_num" "plane" "(x826 y826 z826) (x827 y827 z827) (x828 y828 z828)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3576,8 +3576,8 @@ "id" "id_num" "plane" "(x829 y829 z829) (x830 y830 z830) (x831 y831 z831)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3587,8 +3587,8 @@ "id" "id_num" "plane" "(x832 y832 z832) (x833 y833 z833) (x834 y834 z834)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3598,8 +3598,8 @@ "id" "id_num" "plane" "(x835 y835 z835) (x836 y836 z836) (x837 y837 z837)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3619,8 +3619,8 @@ "id" "id_num" "plane" "(x838 y838 z838) (x839 y839 z839) (x840 y840 z840)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3630,8 +3630,8 @@ "id" "id_num" "plane" "(x841 y841 z841) (x842 y842 z842) (x843 y843 z843)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3641,8 +3641,8 @@ "id" "id_num" "plane" "(x844 y844 z844) (x845 y845 z845) (x846 y846 z846)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3652,8 +3652,8 @@ "id" "id_num" "plane" "(x847 y847 z847) (x848 y848 z848) (x849 y849 z849)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3663,8 +3663,8 @@ "id" "id_num" "plane" "(x850 y850 z850) (x851 y851 z851) (x852 y852 z852)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3684,8 +3684,8 @@ "id" "id_num" "plane" "(x853 y853 z853) (x854 y854 z854) (x855 y855 z855)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3695,8 +3695,8 @@ "id" "id_num" "plane" "(x856 y856 z856) (x857 y857 z857) (x858 y858 z858)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3706,8 +3706,8 @@ "id" "id_num" "plane" "(x859 y859 z859) (x860 y860 z860) (x861 y861 z861)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3717,8 +3717,8 @@ "id" "id_num" "plane" "(x862 y862 z862) (x863 y863 z863) (x864 y864 z864)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3728,8 +3728,8 @@ "id" "id_num" "plane" "(x865 y865 z865) (x866 y866 z866) (x867 y867 z867)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3749,8 +3749,8 @@ "id" "id_num" "plane" "(x868 y868 z868) (x869 y869 z869) (x870 y870 z870)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3760,8 +3760,8 @@ "id" "id_num" "plane" "(x871 y871 z871) (x872 y872 z872) (x873 y873 z873)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3771,8 +3771,8 @@ "id" "id_num" "plane" "(x874 y874 z874) (x875 y875 z875) (x876 y876 z876)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3782,8 +3782,8 @@ "id" "id_num" "plane" "(x877 y877 z877) (x878 y878 z878) (x879 y879 z879)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3793,8 +3793,8 @@ "id" "id_num" "plane" "(x880 y880 z880) (x881 y881 z881) (x882 y882 z882)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3814,7 +3814,7 @@ "id" "id_num" "plane" "(x883 y883 z883) (x884 y884 z884) (x885 y885 z885)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3825,8 +3825,8 @@ "id" "id_num" "plane" "(x886 y886 z886) (x887 y887 z887) (x888 y888 z888)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3836,8 +3836,8 @@ "id" "id_num" "plane" "(x889 y889 z889) (x890 y890 z890) (x891 y891 z891)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3847,8 +3847,8 @@ "id" "id_num" "plane" "(x892 y892 z892) (x893 y893 z893) (x894 y894 z894)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3858,8 +3858,8 @@ "id" "id_num" "plane" "(x895 y895 z895) (x896 y896 z896) (x897 y897 z897)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3879,7 +3879,7 @@ "id" "id_num" "plane" "(x898 y898 z898) (x899 y899 z899) (x900 y900 z900)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3890,8 +3890,8 @@ "id" "id_num" "plane" "(x901 y901 z901) (x902 y902 z902) (x903 y903 z903)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3901,8 +3901,8 @@ "id" "id_num" "plane" "(x904 y904 z904) (x905 y905 z905) (x906 y906 z906)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3912,8 +3912,8 @@ "id" "id_num" "plane" "(x907 y907 z907) (x908 y908 z908) (x909 y909 z909)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3923,8 +3923,8 @@ "id" "id_num" "plane" "(x910 y910 z910) (x911 y911 z911) (x912 y912 z912)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3944,7 +3944,7 @@ "id" "id_num" "plane" "(x913 y913 z913) (x914 y914 z914) (x915 y915 z915)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3955,8 +3955,8 @@ "id" "id_num" "plane" "(x916 y916 z916) (x917 y917 z917) (x918 y918 z918)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3966,8 +3966,8 @@ "id" "id_num" "plane" "(x919 y919 z919) (x920 y920 z920) (x921 y921 z921)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3977,8 +3977,8 @@ "id" "id_num" "plane" "(x922 y922 z922) (x923 y923 z923) (x924 y924 z924)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3988,8 +3988,8 @@ "id" "id_num" "plane" "(x925 y925 z925) (x926 y926 z926) (x927 y927 z927)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4009,7 +4009,7 @@ "id" "id_num" "plane" "(x928 y928 z928) (x929 y929 z929) (x930 y930 z930)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4020,8 +4020,8 @@ "id" "id_num" "plane" "(x931 y931 z931) (x932 y932 z932) (x933 y933 z933)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4031,8 +4031,8 @@ "id" "id_num" "plane" "(x934 y934 z934) (x935 y935 z935) (x936 y936 z936)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4042,8 +4042,8 @@ "id" "id_num" "plane" "(x937 y937 z937) (x938 y938 z938) (x939 y939 z939)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4053,8 +4053,8 @@ "id" "id_num" "plane" "(x940 y940 z940) (x941 y941 z941) (x942 y942 z942)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4074,7 +4074,7 @@ "id" "id_num" "plane" "(x943 y943 z943) (x944 y944 z944) (x945 y945 z945)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4085,8 +4085,8 @@ "id" "id_num" "plane" "(x946 y946 z946) (x947 y947 z947) (x948 y948 z948)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4096,8 +4096,8 @@ "id" "id_num" "plane" "(x949 y949 z949) (x950 y950 z950) (x951 y951 z951)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4107,8 +4107,8 @@ "id" "id_num" "plane" "(x952 y952 z952) (x953 y953 z953) (x954 y954 z954)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4118,8 +4118,8 @@ "id" "id_num" "plane" "(x955 y955 z955) (x956 y956 z956) (x957 y957 z957)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4139,7 +4139,7 @@ "id" "id_num" "plane" "(x958 y958 z958) (x959 y959 z959) (x960 y960 z960)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4150,8 +4150,8 @@ "id" "id_num" "plane" "(x961 y961 z961) (x962 y962 z962) (x963 y963 z963)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4161,8 +4161,8 @@ "id" "id_num" "plane" "(x964 y964 z964) (x965 y965 z965) (x966 y966 z966)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4172,8 +4172,8 @@ "id" "id_num" "plane" "(x967 y967 z967) (x968 y968 z968) (x969 y969 z969)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4183,8 +4183,8 @@ "id" "id_num" "plane" "(x970 y970 z970) (x971 y971 z971) (x972 y972 z972)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4204,7 +4204,7 @@ "id" "id_num" "plane" "(x973 y973 z973) (x974 y974 z974) (x975 y975 z975)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4215,8 +4215,8 @@ "id" "id_num" "plane" "(x976 y976 z976) (x977 y977 z977) (x978 y978 z978)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4226,8 +4226,8 @@ "id" "id_num" "plane" "(x979 y979 z979) (x980 y980 z980) (x981 y981 z981)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4237,8 +4237,8 @@ "id" "id_num" "plane" "(x982 y982 z982) (x983 y983 z983) (x984 y984 z984)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4248,8 +4248,8 @@ "id" "id_num" "plane" "(x985 y985 z985) (x986 y986 z986) (x987 y987 z987)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4269,7 +4269,7 @@ "id" "id_num" "plane" "(x988 y988 z988) (x989 y989 z989) (x990 y990 z990)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4280,8 +4280,8 @@ "id" "id_num" "plane" "(x991 y991 z991) (x992 y992 z992) (x993 y993 z993)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4291,8 +4291,8 @@ "id" "id_num" "plane" "(x994 y994 z994) (x995 y995 z995) (x996 y996 z996)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4302,8 +4302,8 @@ "id" "id_num" "plane" "(x997 y997 z997) (x998 y998 z998) (x999 y999 z999)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4313,8 +4313,8 @@ "id" "id_num" "plane" "(x1000 y1000 z1000) (x1001 y1001 z1001) (x1002 y1002 z1002)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4334,8 +4334,8 @@ "id" "id_num" "plane" "(x1003 y1003 z1003) (x1004 y1004 z1004) (x1005 y1005 z1005)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4345,8 +4345,8 @@ "id" "id_num" "plane" "(x1006 y1006 z1006) (x1007 y1007 z1007) (x1008 y1008 z1008)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4356,8 +4356,8 @@ "id" "id_num" "plane" "(x1009 y1009 z1009) (x1010 y1010 z1010) (x1011 y1011 z1011)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4367,8 +4367,8 @@ "id" "id_num" "plane" "(x1012 y1012 z1012) (x1013 y1013 z1013) (x1014 y1014 z1014)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4378,8 +4378,8 @@ "id" "id_num" "plane" "(x1015 y1015 z1015) (x1016 y1016 z1016) (x1017 y1017 z1017)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4399,8 +4399,8 @@ "id" "id_num" "plane" "(x1018 y1018 z1018) (x1019 y1019 z1019) (x1020 y1020 z1020)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4410,8 +4410,8 @@ "id" "id_num" "plane" "(x1021 y1021 z1021) (x1022 y1022 z1022) (x1023 y1023 z1023)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4421,8 +4421,8 @@ "id" "id_num" "plane" "(x1024 y1024 z1024) (x1025 y1025 z1025) (x1026 y1026 z1026)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4432,8 +4432,8 @@ "id" "id_num" "plane" "(x1027 y1027 z1027) (x1028 y1028 z1028) (x1029 y1029 z1029)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4443,8 +4443,8 @@ "id" "id_num" "plane" "(x1030 y1030 z1030) (x1031 y1031 z1031) (x1032 y1032 z1032)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4464,8 +4464,8 @@ "id" "id_num" "plane" "(x1033 y1033 z1033) (x1034 y1034 z1034) (x1035 y1035 z1035)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4475,8 +4475,8 @@ "id" "id_num" "plane" "(x1036 y1036 z1036) (x1037 y1037 z1037) (x1038 y1038 z1038)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4486,8 +4486,8 @@ "id" "id_num" "plane" "(x1039 y1039 z1039) (x1040 y1040 z1040) (x1041 y1041 z1041)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4497,8 +4497,8 @@ "id" "id_num" "plane" "(x1042 y1042 z1042) (x1043 y1043 z1043) (x1044 y1044 z1044)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4508,8 +4508,8 @@ "id" "id_num" "plane" "(x1045 y1045 z1045) (x1046 y1046 z1046) (x1047 y1047 z1047)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4529,8 +4529,8 @@ "id" "id_num" "plane" "(x1048 y1048 z1048) (x1049 y1049 z1049) (x1050 y1050 z1050)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4540,8 +4540,8 @@ "id" "id_num" "plane" "(x1051 y1051 z1051) (x1052 y1052 z1052) (x1053 y1053 z1053)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4551,8 +4551,8 @@ "id" "id_num" "plane" "(x1054 y1054 z1054) (x1055 y1055 z1055) (x1056 y1056 z1056)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4562,8 +4562,8 @@ "id" "id_num" "plane" "(x1057 y1057 z1057) (x1058 y1058 z1058) (x1059 y1059 z1059)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4573,8 +4573,8 @@ "id" "id_num" "plane" "(x1060 y1060 z1060) (x1061 y1061 z1061) (x1062 y1062 z1062)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4594,8 +4594,8 @@ "id" "id_num" "plane" "(x1063 y1063 z1063) (x1064 y1064 z1064) (x1065 y1065 z1065)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4605,8 +4605,8 @@ "id" "id_num" "plane" "(x1066 y1066 z1066) (x1067 y1067 z1067) (x1068 y1068 z1068)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4616,8 +4616,8 @@ "id" "id_num" "plane" "(x1069 y1069 z1069) (x1070 y1070 z1070) (x1071 y1071 z1071)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4627,8 +4627,8 @@ "id" "id_num" "plane" "(x1072 y1072 z1072) (x1073 y1073 z1073) (x1074 y1074 z1074)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4638,8 +4638,8 @@ "id" "id_num" "plane" "(x1075 y1075 z1075) (x1076 y1076 z1076) (x1077 y1077 z1077)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4659,8 +4659,8 @@ "id" "id_num" "plane" "(x1078 y1078 z1078) (x1079 y1079 z1079) (x1080 y1080 z1080)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4670,8 +4670,8 @@ "id" "id_num" "plane" "(x1081 y1081 z1081) (x1082 y1082 z1082) (x1083 y1083 z1083)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4681,8 +4681,8 @@ "id" "id_num" "plane" "(x1084 y1084 z1084) (x1085 y1085 z1085) (x1086 y1086 z1086)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4692,8 +4692,8 @@ "id" "id_num" "plane" "(x1087 y1087 z1087) (x1088 y1088 z1088) (x1089 y1089 z1089)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4703,8 +4703,8 @@ "id" "id_num" "plane" "(x1090 y1090 z1090) (x1091 y1091 z1091) (x1092 y1092 z1092)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4724,8 +4724,8 @@ "id" "id_num" "plane" "(x1093 y1093 z1093) (x1094 y1094 z1094) (x1095 y1095 z1095)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4735,8 +4735,8 @@ "id" "id_num" "plane" "(x1096 y1096 z1096) (x1097 y1097 z1097) (x1098 y1098 z1098)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4746,8 +4746,8 @@ "id" "id_num" "plane" "(x1099 y1099 z1099) (x1100 y1100 z1100) (x1101 y1101 z1101)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4757,8 +4757,8 @@ "id" "id_num" "plane" "(x1102 y1102 z1102) (x1103 y1103 z1103) (x1104 y1104 z1104)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4768,8 +4768,8 @@ "id" "id_num" "plane" "(x1105 y1105 z1105) (x1106 y1106 z1106) (x1107 y1107 z1107)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4789,8 +4789,8 @@ "id" "id_num" "plane" "(x1108 y1108 z1108) (x1109 y1109 z1109) (x1110 y1110 z1110)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4800,8 +4800,8 @@ "id" "id_num" "plane" "(x1111 y1111 z1111) (x1112 y1112 z1112) (x1113 y1113 z1113)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4811,8 +4811,8 @@ "id" "id_num" "plane" "(x1114 y1114 z1114) (x1115 y1115 z1115) (x1116 y1116 z1116)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4822,8 +4822,8 @@ "id" "id_num" "plane" "(x1117 y1117 z1117) (x1118 y1118 z1118) (x1119 y1119 z1119)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4833,8 +4833,8 @@ "id" "id_num" "plane" "(x1120 y1120 z1120) (x1121 y1121 z1121) (x1122 y1122 z1122)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4854,8 +4854,8 @@ "id" "id_num" "plane" "(x1123 y1123 z1123) (x1124 y1124 z1124) (x1125 y1125 z1125)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4865,8 +4865,8 @@ "id" "id_num" "plane" "(x1126 y1126 z1126) (x1127 y1127 z1127) (x1128 y1128 z1128)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4876,8 +4876,8 @@ "id" "id_num" "plane" "(x1129 y1129 z1129) (x1130 y1130 z1130) (x1131 y1131 z1131)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4887,8 +4887,8 @@ "id" "id_num" "plane" "(x1132 y1132 z1132) (x1133 y1133 z1133) (x1134 y1134 z1134)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4898,8 +4898,8 @@ "id" "id_num" "plane" "(x1135 y1135 z1135) (x1136 y1136 z1136) (x1137 y1137 z1137)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4919,8 +4919,8 @@ "id" "id_num" "plane" "(x1138 y1138 z1138) (x1139 y1139 z1139) (x1140 y1140 z1140)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4930,8 +4930,8 @@ "id" "id_num" "plane" "(x1141 y1141 z1141) (x1142 y1142 z1142) (x1143 y1143 z1143)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4941,8 +4941,8 @@ "id" "id_num" "plane" "(x1144 y1144 z1144) (x1145 y1145 z1145) (x1146 y1146 z1146)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4952,8 +4952,8 @@ "id" "id_num" "plane" "(x1147 y1147 z1147) (x1148 y1148 z1148) (x1149 y1149 z1149)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4963,8 +4963,8 @@ "id" "id_num" "plane" "(x1150 y1150 z1150) (x1151 y1151 z1151) (x1152 y1152 z1152)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4984,8 +4984,8 @@ "id" "id_num" "plane" "(x1153 y1153 z1153) (x1154 y1154 z1154) (x1155 y1155 z1155)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4995,8 +4995,8 @@ "id" "id_num" "plane" "(x1156 y1156 z1156) (x1157 y1157 z1157) (x1158 y1158 z1158)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5006,8 +5006,8 @@ "id" "id_num" "plane" "(x1159 y1159 z1159) (x1160 y1160 z1160) (x1161 y1161 z1161)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5017,8 +5017,8 @@ "id" "id_num" "plane" "(x1162 y1162 z1162) (x1163 y1163 z1163) (x1164 y1164 z1164)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5028,8 +5028,8 @@ "id" "id_num" "plane" "(x1165 y1165 z1165) (x1166 y1166 z1166) (x1167 y1167 z1167)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5049,8 +5049,8 @@ "id" "id_num" "plane" "(x1168 y1168 z1168) (x1169 y1169 z1169) (x1170 y1170 z1170)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5060,8 +5060,8 @@ "id" "id_num" "plane" "(x1171 y1171 z1171) (x1172 y1172 z1172) (x1173 y1173 z1173)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5071,8 +5071,8 @@ "id" "id_num" "plane" "(x1174 y1174 z1174) (x1175 y1175 z1175) (x1176 y1176 z1176)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5082,8 +5082,8 @@ "id" "id_num" "plane" "(x1177 y1177 z1177) (x1178 y1178 z1178) (x1179 y1179 z1179)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5093,8 +5093,8 @@ "id" "id_num" "plane" "(x1180 y1180 z1180) (x1181 y1181 z1181) (x1182 y1182 z1182)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5114,8 +5114,8 @@ "id" "id_num" "plane" "(x1183 y1183 z1183) (x1184 y1184 z1184) (x1185 y1185 z1185)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5125,8 +5125,8 @@ "id" "id_num" "plane" "(x1186 y1186 z1186) (x1187 y1187 z1187) (x1188 y1188 z1188)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5136,8 +5136,8 @@ "id" "id_num" "plane" "(x1189 y1189 z1189) (x1190 y1190 z1190) (x1191 y1191 z1191)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5147,8 +5147,8 @@ "id" "id_num" "plane" "(x1192 y1192 z1192) (x1193 y1193 z1193) (x1194 y1194 z1194)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5158,8 +5158,8 @@ "id" "id_num" "plane" "(x1195 y1195 z1195) (x1196 y1196 z1196) (x1197 y1197 z1197)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5179,8 +5179,8 @@ "id" "id_num" "plane" "(x1198 y1198 z1198) (x1199 y1199 z1199) (x1200 y1200 z1200)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5190,8 +5190,8 @@ "id" "id_num" "plane" "(x1201 y1201 z1201) (x1202 y1202 z1202) (x1203 y1203 z1203)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5201,8 +5201,8 @@ "id" "id_num" "plane" "(x1204 y1204 z1204) (x1205 y1205 z1205) (x1206 y1206 z1206)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5212,8 +5212,8 @@ "id" "id_num" "plane" "(x1207 y1207 z1207) (x1208 y1208 z1208) (x1209 y1209 z1209)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5223,8 +5223,8 @@ "id" "id_num" "plane" "(x1210 y1210 z1210) (x1211 y1211 z1211) (x1212 y1212 z1212)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5244,8 +5244,8 @@ "id" "id_num" "plane" "(x1213 y1213 z1213) (x1214 y1214 z1214) (x1215 y1215 z1215)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5255,8 +5255,8 @@ "id" "id_num" "plane" "(x1216 y1216 z1216) (x1217 y1217 z1217) (x1218 y1218 z1218)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5266,8 +5266,8 @@ "id" "id_num" "plane" "(x1219 y1219 z1219) (x1220 y1220 z1220) (x1221 y1221 z1221)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5277,8 +5277,8 @@ "id" "id_num" "plane" "(x1222 y1222 z1222) (x1223 y1223 z1223) (x1224 y1224 z1224)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5288,8 +5288,8 @@ "id" "id_num" "plane" "(x1225 y1225 z1225) (x1226 y1226 z1226) (x1227 y1227 z1227)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5309,8 +5309,8 @@ "id" "id_num" "plane" "(x1228 y1228 z1228) (x1229 y1229 z1229) (x1230 y1230 z1230)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5320,8 +5320,8 @@ "id" "id_num" "plane" "(x1231 y1231 z1231) (x1232 y1232 z1232) (x1233 y1233 z1233)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5331,8 +5331,8 @@ "id" "id_num" "plane" "(x1234 y1234 z1234) (x1235 y1235 z1235) (x1236 y1236 z1236)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5342,8 +5342,8 @@ "id" "id_num" "plane" "(x1237 y1237 z1237) (x1238 y1238 z1238) (x1239 y1239 z1239)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5353,8 +5353,8 @@ "id" "id_num" "plane" "(x1240 y1240 z1240) (x1241 y1241 z1241) (x1242 y1242 z1242)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/diag_wall.txt b/prefab_template/diag_wall.txt index f846b35..91f3a44 100644 --- a/prefab_template/diag_wall.txt +++ b/prefab_template/diag_wall.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -148,8 +148,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -170,8 +170,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -181,8 +181,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -192,8 +192,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -203,8 +203,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -214,8 +214,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -225,8 +225,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -236,8 +236,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/diag_wall_egypt.txt b/prefab_template/diag_wall_egypt.txt index 0da4bed..80dfd6d 100644 --- a/prefab_template/diag_wall_egypt.txt +++ b/prefab_template/diag_wall_egypt.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -100,8 +100,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -194,8 +194,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -288,8 +288,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -382,8 +382,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -476,8 +476,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -580,8 +580,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -591,8 +591,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -602,8 +602,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -613,8 +613,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -624,8 +624,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -635,8 +635,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -646,8 +646,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -668,8 +668,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -679,8 +679,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -690,8 +690,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -701,8 +701,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -712,8 +712,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -723,8 +723,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -745,8 +745,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -756,8 +756,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -767,8 +767,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -778,8 +778,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -789,8 +789,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -800,8 +800,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -822,8 +822,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -833,8 +833,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -844,8 +844,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -855,8 +855,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -866,8 +866,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -888,8 +888,8 @@ "id" "id_num" "plane" "(x91 y91 z91) (x92 y92 z92) (x93 y93 z93)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -899,8 +899,8 @@ "id" "id_num" "plane" "(x94 y94 z94) (x95 y95 z95) (x96 y96 z96)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -910,8 +910,8 @@ "id" "id_num" "plane" "(x97 y97 z97) (x98 y98 z98) (x99 y99 z99)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -921,8 +921,8 @@ "id" "id_num" "plane" "(x100 y100 z100) (x101 y101 z101) (x102 y102 z102)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -932,8 +932,8 @@ "id" "id_num" "plane" "(x103 y103 z103) (x104 y104 z104) (x105 y105 z105)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -943,8 +943,8 @@ "id" "id_num" "plane" "(x106 y106 z106) (x107 y107 z107) (x108 y108 z108)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -954,8 +954,8 @@ "id" "id_num" "plane" "(x109 y109 z109) (x110 y110 z110) (x111 y111 z111)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -976,8 +976,8 @@ "id" "id_num" "plane" "(x112 y112 z112) (x113 y113 z113) (x114 y114 z114)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -987,8 +987,8 @@ "id" "id_num" "plane" "(x115 y115 z115) (x116 y116 z116) (x117 y117 z117)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -998,8 +998,8 @@ "id" "id_num" "plane" "(x118 y118 z118) (x119 y119 z119) (x120 y120 z120)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1009,8 +1009,8 @@ "id" "id_num" "plane" "(x121 y121 z121) (x122 y122 z122) (x123 y123 z123)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1020,8 +1020,8 @@ "id" "id_num" "plane" "(x124 y124 z124) (x125 y125 z125) (x126 y126 z126)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1031,8 +1031,8 @@ "id" "id_num" "plane" "(x127 y127 z127) (x128 y128 z128) (x129 y129 z129)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1042,8 +1042,8 @@ "id" "id_num" "plane" "(x130 y130 z130) (x131 y131 z131) (x132 y132 z132)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/diag_wall_stone.txt b/prefab_template/diag_wall_stone.txt index ed3db8a..07684d8 100644 --- a/prefab_template/diag_wall_stone.txt +++ b/prefab_template/diag_wall_stone.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -148,8 +148,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -159,8 +159,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -170,8 +170,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -181,8 +181,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -192,8 +192,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -203,8 +203,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -214,8 +214,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -225,8 +225,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -247,8 +247,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -258,8 +258,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -269,8 +269,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -280,8 +280,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -291,8 +291,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -302,8 +302,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -324,8 +324,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -335,8 +335,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -346,8 +346,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -357,8 +357,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -368,8 +368,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -379,8 +379,8 @@ "id" "id_num" "plane" "(x91 y91 z91) (x92 y92 z92) (x93 y93 z93)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -401,8 +401,8 @@ "id" "id_num" "plane" "(x94 y94 z94) (x95 y95 z95) (x96 y96 z96)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -412,8 +412,8 @@ "id" "id_num" "plane" "(x97 y97 z97) (x98 y98 z98) (x99 y99 z99)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -423,8 +423,8 @@ "id" "id_num" "plane" "(x100 y100 z100) (x101 y101 z101) (x102 y102 z102)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -434,8 +434,8 @@ "id" "id_num" "plane" "(x103 y103 z103) (x104 y104 z104) (x105 y105 z105)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -445,8 +445,8 @@ "id" "id_num" "plane" "(x106 y106 z106) (x107 y107 z107) (x108 y108 z108)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -456,8 +456,8 @@ "id" "id_num" "plane" "(x109 y109 z109) (x110 y110 z110) (x111 y111 z111)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -467,8 +467,8 @@ "id" "id_num" "plane" "(x112 y112 z112) (x113 y113 z113) (x114 y114 z114)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/ground.txt b/prefab_template/ground.txt index 2f70273..ca65380 100644 --- a/prefab_template/ground.txt +++ b/prefab_template/ground.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/ground_egypt.txt b/prefab_template/ground_egypt.txt index af6e546..67a55e4 100644 --- a/prefab_template/ground_egypt.txt +++ b/prefab_template/ground_egypt.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -100,8 +100,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -194,8 +194,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -288,8 +288,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -382,8 +382,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -476,8 +476,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/ground_stone.txt b/prefab_template/ground_stone.txt index d968df1..237086f 100644 --- a/prefab_template/ground_stone.txt +++ b/prefab_template/ground_stone.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/heal.txt b/prefab_template/heal.txt index 5860f39..1739da0 100644 --- a/prefab_template/heal.txt +++ b/prefab_template/heal.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/health_hut.txt b/prefab_template/health_hut.txt index 40bca36..e849db2 100644 --- a/prefab_template/health_hut.txt +++ b/prefab_template/health_hut.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,8 +234,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,8 +245,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,8 +256,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,8 +267,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,8 +278,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -289,8 +289,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -310,8 +310,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,8 +321,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -332,8 +332,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -343,8 +343,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -354,8 +354,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -365,8 +365,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/laser_array.txt b/prefab_template/laser_array.txt index a8e3e07..58a3761 100644 --- a/prefab_template/laser_array.txt +++ b/prefab_template/laser_array.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/mini_spire.txt b/prefab_template/mini_spire.txt index d2a4a66..edadb50 100644 --- a/prefab_template/mini_spire.txt +++ b/prefab_template/mini_spire.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,8 +234,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,8 +245,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,8 +256,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,8 +267,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,8 +278,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -289,8 +289,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -310,8 +310,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,8 +321,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -332,8 +332,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -343,8 +343,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -354,8 +354,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -365,8 +365,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -386,8 +386,8 @@ "id" "id_num" "plane" "(x91 y91 z91) (x92 y92 z92) (x93 y93 z93)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -397,8 +397,8 @@ "id" "id_num" "plane" "(x94 y94 z94) (x95 y95 z95) (x96 y96 z96)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -408,8 +408,8 @@ "id" "id_num" "plane" "(x97 y97 z97) (x98 y98 z98) (x99 y99 z99)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -419,8 +419,8 @@ "id" "id_num" "plane" "(x100 y100 z100) (x101 y101 z101) (x102 y102 z102)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -430,8 +430,8 @@ "id" "id_num" "plane" "(x103 y103 z103) (x104 y104 z104) (x105 y105 z105)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -441,8 +441,8 @@ "id" "id_num" "plane" "(x106 y106 z106) (x107 y107 z107) (x108 y108 z108)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -462,8 +462,8 @@ "id" "id_num" "plane" "(x109 y109 z109) (x110 y110 z110) (x111 y111 z111)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -473,8 +473,8 @@ "id" "id_num" "plane" "(x112 y112 z112) (x113 y113 z113) (x114 y114 z114)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -484,8 +484,8 @@ "id" "id_num" "plane" "(x115 y115 z115) (x116 y116 z116) (x117 y117 z117)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -495,8 +495,8 @@ "id" "id_num" "plane" "(x118 y118 z118) (x119 y119 z119) (x120 y120 z120)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -506,8 +506,8 @@ "id" "id_num" "plane" "(x121 y121 z121) (x122 y122 z122) (x123 y123 z123)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -517,8 +517,8 @@ "id" "id_num" "plane" "(x124 y124 z124) (x125 y125 z125) (x126 y126 z126)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -538,8 +538,8 @@ "id" "id_num" "plane" "(x127 y127 z127) (x128 y128 z128) (x129 y129 z129)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -549,8 +549,8 @@ "id" "id_num" "plane" "(x130 y130 z130) (x131 y131 z131) (x132 y132 z132)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -560,8 +560,8 @@ "id" "id_num" "plane" "(x133 y133 z133) (x134 y134 z134) (x135 y135 z135)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -571,8 +571,8 @@ "id" "id_num" "plane" "(x136 y136 z136) (x137 y137 z137) (x138 y138 z138)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -582,8 +582,8 @@ "id" "id_num" "plane" "(x139 y139 z139) (x140 y140 z140) (x141 y141 z141)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -593,8 +593,8 @@ "id" "id_num" "plane" "(x142 y142 z142) (x143 y143 z143) (x144 y144 z144)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/nuke.txt b/prefab_template/nuke.txt index ff13c7c..7222861 100644 --- a/prefab_template/nuke.txt +++ b/prefab_template/nuke.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/ramp.txt b/prefab_template/ramp.txt index 36bd80d..980231a 100644 --- a/prefab_template/ramp.txt +++ b/prefab_template/ramp.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/respawn_red.txt b/prefab_template/respawn_red.txt index f941ae0..5d60bc9 100644 --- a/prefab_template/respawn_red.txt +++ b/prefab_template/respawn_red.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,8 +234,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,8 +245,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,8 +256,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,8 +267,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,8 +278,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -289,8 +289,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -310,8 +310,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,8 +321,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -332,8 +332,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -343,8 +343,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -354,8 +354,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -365,8 +365,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -386,8 +386,8 @@ "id" "id_num" "plane" "(x91 y91 z91) (x92 y92 z92) (x93 y93 z93)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -397,8 +397,8 @@ "id" "id_num" "plane" "(x94 y94 z94) (x95 y95 z95) (x96 y96 z96)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -408,8 +408,8 @@ "id" "id_num" "plane" "(x97 y97 z97) (x98 y98 z98) (x99 y99 z99)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -419,8 +419,8 @@ "id" "id_num" "plane" "(x100 y100 z100) (x101 y101 z101) (x102 y102 z102)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -430,8 +430,8 @@ "id" "id_num" "plane" "(x103 y103 z103) (x104 y104 z104) (x105 y105 z105)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -441,8 +441,8 @@ "id" "id_num" "plane" "(x106 y106 z106) (x107 y107 z107) (x108 y108 z108)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -462,8 +462,8 @@ "id" "id_num" "plane" "(x109 y109 z109) (x110 y110 z110) (x111 y111 z111)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -473,8 +473,8 @@ "id" "id_num" "plane" "(x112 y112 z112) (x113 y113 z113) (x114 y114 z114)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -484,8 +484,8 @@ "id" "id_num" "plane" "(x115 y115 z115) (x116 y116 z116) (x117 y117 z117)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -495,8 +495,8 @@ "id" "id_num" "plane" "(x118 y118 z118) (x119 y119 z119) (x120 y120 z120)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -506,8 +506,8 @@ "id" "id_num" "plane" "(x121 y121 z121) (x122 y122 z122) (x123 y123 z123)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -517,8 +517,8 @@ "id" "id_num" "plane" "(x124 y124 z124) (x125 y125 z125) (x126 y126 z126)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -538,8 +538,8 @@ "id" "id_num" "plane" "(x127 y127 z127) (x128 y128 z128) (x129 y129 z129)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -549,8 +549,8 @@ "id" "id_num" "plane" "(x130 y130 z130) (x131 y131 z131) (x132 y132 z132)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -560,8 +560,8 @@ "id" "id_num" "plane" "(x133 y133 z133) (x134 y134 z134) (x135 y135 z135)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -571,8 +571,8 @@ "id" "id_num" "plane" "(x136 y136 z136) (x137 y137 z137) (x138 y138 z138)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -582,8 +582,8 @@ "id" "id_num" "plane" "(x139 y139 z139) (x140 y140 z140) (x141 y141 z141)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -593,8 +593,8 @@ "id" "id_num" "plane" "(x142 y142 z142) (x143 y143 z143) (x144 y144 z144)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -614,8 +614,8 @@ "id" "id_num" "plane" "(x145 y145 z145) (x146 y146 z146) (x147 y147 z147)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -625,8 +625,8 @@ "id" "id_num" "plane" "(x148 y148 z148) (x149 y149 z149) (x150 y150 z150)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -636,8 +636,8 @@ "id" "id_num" "plane" "(x151 y151 z151) (x152 y152 z152) (x153 y153 z153)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -647,8 +647,8 @@ "id" "id_num" "plane" "(x154 y154 z154) (x155 y155 z155) (x156 y156 z156)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -658,8 +658,8 @@ "id" "id_num" "plane" "(x157 y157 z157) (x158 y158 z158) (x159 y159 z159)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -669,8 +669,8 @@ "id" "id_num" "plane" "(x160 y160 z160) (x161 y161 z161) (x162 y162 z162)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -690,8 +690,8 @@ "id" "id_num" "plane" "(x163 y163 z163) (x164 y164 z164) (x165 y165 z165)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -701,8 +701,8 @@ "id" "id_num" "plane" "(x166 y166 z166) (x167 y167 z167) (x168 y168 z168)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -712,8 +712,8 @@ "id" "id_num" "plane" "(x169 y169 z169) (x170 y170 z170) (x171 y171 z171)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -723,8 +723,8 @@ "id" "id_num" "plane" "(x172 y172 z172) (x173 y173 z173) (x174 y174 z174)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -734,8 +734,8 @@ "id" "id_num" "plane" "(x175 y175 z175) (x176 y176 z176) (x177 y177 z177)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -745,8 +745,8 @@ "id" "id_num" "plane" "(x178 y178 z178) (x179 y179 z179) (x180 y180 z180)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -766,8 +766,8 @@ "id" "id_num" "plane" "(x181 y181 z181) (x182 y182 z182) (x183 y183 z183)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -777,8 +777,8 @@ "id" "id_num" "plane" "(x184 y184 z184) (x185 y185 z185) (x186 y186 z186)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -788,8 +788,8 @@ "id" "id_num" "plane" "(x187 y187 z187) (x188 y188 z188) (x189 y189 z189)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -799,8 +799,8 @@ "id" "id_num" "plane" "(x190 y190 z190) (x191 y191 z191) (x192 y192 z192)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -810,8 +810,8 @@ "id" "id_num" "plane" "(x193 y193 z193) (x194 y194 z194) (x195 y195 z195)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -821,8 +821,8 @@ "id" "id_num" "plane" "(x196 y196 z196) (x197 y197 z197) (x198 y198 z198)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/respawn_room_blu.txt b/prefab_template/respawn_room_blu.txt index f941ae0..5d60bc9 100644 --- a/prefab_template/respawn_room_blu.txt +++ b/prefab_template/respawn_room_blu.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,8 +234,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,8 +245,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,8 +256,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,8 +267,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,8 +278,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -289,8 +289,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -310,8 +310,8 @@ "id" "id_num" "plane" "(x73 y73 z73) (x74 y74 z74) (x75 y75 z75)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,8 +321,8 @@ "id" "id_num" "plane" "(x76 y76 z76) (x77 y77 z77) (x78 y78 z78)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -332,8 +332,8 @@ "id" "id_num" "plane" "(x79 y79 z79) (x80 y80 z80) (x81 y81 z81)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -343,8 +343,8 @@ "id" "id_num" "plane" "(x82 y82 z82) (x83 y83 z83) (x84 y84 z84)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -354,8 +354,8 @@ "id" "id_num" "plane" "(x85 y85 z85) (x86 y86 z86) (x87 y87 z87)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -365,8 +365,8 @@ "id" "id_num" "plane" "(x88 y88 z88) (x89 y89 z89) (x90 y90 z90)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -386,8 +386,8 @@ "id" "id_num" "plane" "(x91 y91 z91) (x92 y92 z92) (x93 y93 z93)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -397,8 +397,8 @@ "id" "id_num" "plane" "(x94 y94 z94) (x95 y95 z95) (x96 y96 z96)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -408,8 +408,8 @@ "id" "id_num" "plane" "(x97 y97 z97) (x98 y98 z98) (x99 y99 z99)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -419,8 +419,8 @@ "id" "id_num" "plane" "(x100 y100 z100) (x101 y101 z101) (x102 y102 z102)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -430,8 +430,8 @@ "id" "id_num" "plane" "(x103 y103 z103) (x104 y104 z104) (x105 y105 z105)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -441,8 +441,8 @@ "id" "id_num" "plane" "(x106 y106 z106) (x107 y107 z107) (x108 y108 z108)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -462,8 +462,8 @@ "id" "id_num" "plane" "(x109 y109 z109) (x110 y110 z110) (x111 y111 z111)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -473,8 +473,8 @@ "id" "id_num" "plane" "(x112 y112 z112) (x113 y113 z113) (x114 y114 z114)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -484,8 +484,8 @@ "id" "id_num" "plane" "(x115 y115 z115) (x116 y116 z116) (x117 y117 z117)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -495,8 +495,8 @@ "id" "id_num" "plane" "(x118 y118 z118) (x119 y119 z119) (x120 y120 z120)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -506,8 +506,8 @@ "id" "id_num" "plane" "(x121 y121 z121) (x122 y122 z122) (x123 y123 z123)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -517,8 +517,8 @@ "id" "id_num" "plane" "(x124 y124 z124) (x125 y125 z125) (x126 y126 z126)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -538,8 +538,8 @@ "id" "id_num" "plane" "(x127 y127 z127) (x128 y128 z128) (x129 y129 z129)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -549,8 +549,8 @@ "id" "id_num" "plane" "(x130 y130 z130) (x131 y131 z131) (x132 y132 z132)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -560,8 +560,8 @@ "id" "id_num" "plane" "(x133 y133 z133) (x134 y134 z134) (x135 y135 z135)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -571,8 +571,8 @@ "id" "id_num" "plane" "(x136 y136 z136) (x137 y137 z137) (x138 y138 z138)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -582,8 +582,8 @@ "id" "id_num" "plane" "(x139 y139 z139) (x140 y140 z140) (x141 y141 z141)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -593,8 +593,8 @@ "id" "id_num" "plane" "(x142 y142 z142) (x143 y143 z143) (x144 y144 z144)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -614,8 +614,8 @@ "id" "id_num" "plane" "(x145 y145 z145) (x146 y146 z146) (x147 y147 z147)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -625,8 +625,8 @@ "id" "id_num" "plane" "(x148 y148 z148) (x149 y149 z149) (x150 y150 z150)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -636,8 +636,8 @@ "id" "id_num" "plane" "(x151 y151 z151) (x152 y152 z152) (x153 y153 z153)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -647,8 +647,8 @@ "id" "id_num" "plane" "(x154 y154 z154) (x155 y155 z155) (x156 y156 z156)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -658,8 +658,8 @@ "id" "id_num" "plane" "(x157 y157 z157) (x158 y158 z158) (x159 y159 z159)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -669,8 +669,8 @@ "id" "id_num" "plane" "(x160 y160 z160) (x161 y161 z161) (x162 y162 z162)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -690,8 +690,8 @@ "id" "id_num" "plane" "(x163 y163 z163) (x164 y164 z164) (x165 y165 z165)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -701,8 +701,8 @@ "id" "id_num" "plane" "(x166 y166 z166) (x167 y167 z167) (x168 y168 z168)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -712,8 +712,8 @@ "id" "id_num" "plane" "(x169 y169 z169) (x170 y170 z170) (x171 y171 z171)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -723,8 +723,8 @@ "id" "id_num" "plane" "(x172 y172 z172) (x173 y173 z173) (x174 y174 z174)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -734,8 +734,8 @@ "id" "id_num" "plane" "(x175 y175 z175) (x176 y176 z176) (x177 y177 z177)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -745,8 +745,8 @@ "id" "id_num" "plane" "(x178 y178 z178) (x179 y179 z179) (x180 y180 z180)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -766,8 +766,8 @@ "id" "id_num" "plane" "(x181 y181 z181) (x182 y182 z182) (x183 y183 z183)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -777,8 +777,8 @@ "id" "id_num" "plane" "(x184 y184 z184) (x185 y185 z185) (x186 y186 z186)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -788,8 +788,8 @@ "id" "id_num" "plane" "(x187 y187 z187) (x188 y188 z188) (x189 y189 z189)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -799,8 +799,8 @@ "id" "id_num" "plane" "(x190 y190 z190) (x191 y191 z191) (x192 y192 z192)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -810,8 +810,8 @@ "id" "id_num" "plane" "(x193 y193 z193) (x194 y194 z194) (x195 y195 z195)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -821,8 +821,8 @@ "id" "id_num" "plane" "(x196 y196 z196) (x197 y197 z197) (x198 y198 z198)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/spire.txt b/prefab_template/spire.txt index 7d54b4b..631e195 100644 --- a/prefab_template/spire.txt +++ b/prefab_template/spire.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,8 +158,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,8 +169,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -180,8 +180,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -191,8 +191,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -202,8 +202,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -213,8 +213,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,7 +234,7 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 -0.242536 -0.970143 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -245,8 +245,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,8 +256,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,8 +267,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,7 +278,7 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 1] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" "vaxis" "[0 0.242536 -0.970143 0] 0.25" "rotation" "0" "lightmapscale" "16" diff --git a/prefab_template/wall_egypt.txt b/prefab_template/wall_egypt.txt index 6a59793..8690118 100644 --- a/prefab_template/wall_egypt.txt +++ b/prefab_template/wall_egypt.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -100,8 +100,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -194,8 +194,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -288,8 +288,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -382,8 +382,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -476,8 +476,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "EGYPT/SAND_FLOOR_BLEND_04_WITH_GRASS" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -580,8 +580,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -591,8 +591,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -602,8 +602,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -613,8 +613,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -624,8 +624,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -635,8 +635,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -656,8 +656,8 @@ "id" "id_num" "plane" "(x37 y37 z37) (x38 y38 z38) (x39 y39 z39)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -667,8 +667,8 @@ "id" "id_num" "plane" "(x40 y40 z40) (x41 y41 z41) (x42 y42 z42)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -678,8 +678,8 @@ "id" "id_num" "plane" "(x43 y43 z43) (x44 y44 z44) (x45 y45 z45)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -689,8 +689,8 @@ "id" "id_num" "plane" "(x46 y46 z46) (x47 y47 z47) (x48 y48 z48)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -700,8 +700,8 @@ "id" "id_num" "plane" "(x49 y49 z49) (x50 y50 z50) (x51 y51 z51)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -711,8 +711,8 @@ "id" "id_num" "plane" "(x52 y52 z52) (x53 y53 z53) (x54 y54 z54)" "material" "EGYPT/HYRO_03" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -732,8 +732,8 @@ "id" "id_num" "plane" "(x55 y55 z55) (x56 y56 z56) (x57 y57 z57)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -743,8 +743,8 @@ "id" "id_num" "plane" "(x58 y58 z58) (x59 y59 z59) (x60 y60 z60)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -754,8 +754,8 @@ "id" "id_num" "plane" "(x61 y61 z61) (x62 y62 z62) (x63 y63 z63)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -765,8 +765,8 @@ "id" "id_num" "plane" "(x64 y64 z64) (x65 y65 z65) (x66 y66 z66)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -776,8 +776,8 @@ "id" "id_num" "plane" "(x67 y67 z67) (x68 y68 z68) (x69 y69 z69)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -787,8 +787,8 @@ "id" "id_num" "plane" "(x70 y70 z70) (x71 y71 z71) (x72 y72 z72)" "material" "EGYPT/FLAT_WALL_02" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefab_template/wall_stone.txt b/prefab_template/wall_stone.txt index e1bc4b0..a616427 100644 --- a/prefab_template/wall_stone.txt +++ b/prefab_template/wall_stone.txt @@ -6,8 +6,8 @@ "id" "id_num" "plane" "(x1 y1 z1) (x2 y2 z2) (x3 y3 z3)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -17,8 +17,8 @@ "id" "id_num" "plane" "(x4 y4 z4) (x5 y5 z5) (x6 y6 z6)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28,8 +28,8 @@ "id" "id_num" "plane" "(x7 y7 z7) (x8 y8 z8) (x9 y9 z9)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -39,8 +39,8 @@ "id" "id_num" "plane" "(x10 y10 z10) (x11 y11 z11) (x12 y12 z12)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -50,8 +50,8 @@ "id" "id_num" "plane" "(x13 y13 z13) (x14 y14 z14) (x15 y15 z15)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -61,8 +61,8 @@ "id" "id_num" "plane" "(x16 y16 z16) (x17 y17 z17) (x18 y18 z18)" "material" "NATURE/BLENDGROUNDTOCOBBLE002" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,8 +82,8 @@ "id" "id_num" "plane" "(x19 y19 z19) (x20 y20 z20) (x21 y21 z21)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,8 +93,8 @@ "id" "id_num" "plane" "(x22 y22 z22) (x23 y23 z23) (x24 y24 z24)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -104,8 +104,8 @@ "id" "id_num" "plane" "(x25 y25 z25) (x26 y26 z26) (x27 y27 z27)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -115,8 +115,8 @@ "id" "id_num" "plane" "(x28 y28 z28) (x29 y29 z29) (x30 y30 z30)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -126,8 +126,8 @@ "id" "id_num" "plane" "(x31 y31 z31) (x32 y32 z32) (x33 y33 z33)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -137,8 +137,8 @@ "id" "id_num" "plane" "(x34 y34 z34) (x35 y35 z35) (x36 y36 z36)" "material" "MEDIEVAL/STONETRIM001A" - "uaxis" "[1 0 0 1] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[AXIS_REPLACE_U] 0.25" + "vaxis" "[AXIS_REPLACE_V] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/prefabs/ammo_hut.py b/prefabs/ammo_hut.py index 154847f..2253adb 100644 --- a/prefabs/ammo_hut.py +++ b/prefabs/ammo_hut.py @@ -1111,6 +1111,42 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 90 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/bl_spire.py b/prefabs/bl_spire.py index 29dd53b..1043b77 100644 --- a/prefabs/bl_spire.py +++ b/prefabs/bl_spire.py @@ -247,6 +247,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 18 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/blank_prefab.py b/prefabs/blank_prefab.py index 1d4d1bf..140eb0a 100644 --- a/prefabs/blank_prefab.py +++ b/prefabs/blank_prefab.py @@ -74,6 +74,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 18 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/blank_tile.py b/prefabs/blank_tile.py index 07f1c19..cbc97d0 100644 --- a/prefabs/blank_tile.py +++ b/prefabs/blank_tile.py @@ -74,7 +74,42 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 18 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) + for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) world_id_num += 1 diff --git a/prefabs/corner.py b/prefabs/corner.py index 6e5327b..b3dc5ee 100644 --- a/prefabs/corner.py +++ b/prefabs/corner.py @@ -680,6 +680,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r values = "".join(lines)#converting list to string ogvalues = "".join(lines) + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) + for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) world_id_num += 1 diff --git a/prefabs/corner_egypt.py b/prefabs/corner_egypt.py index f91fcf1..63aa79f 100644 --- a/prefabs/corner_egypt.py +++ b/prefabs/corner_egypt.py @@ -1543,6 +1543,42 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 126 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) + for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/corner_prefab.py b/prefabs/corner_prefab.py index 1a207a8..98b1c9b 100644 --- a/prefabs/corner_prefab.py +++ b/prefabs/corner_prefab.py @@ -679,7 +679,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 54 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) world_id_num += 1 diff --git a/prefabs/corner_stone.py b/prefabs/corner_stone.py index 1be9f4d..005da7b 100644 --- a/prefabs/corner_stone.py +++ b/prefabs/corner_stone.py @@ -679,6 +679,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 54 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/cp_koth_prefab.py b/prefabs/cp_koth_prefab.py index 3ebaff3..1b7396c 100644 --- a/prefabs/cp_koth_prefab.py +++ b/prefabs/cp_koth_prefab.py @@ -463,6 +463,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 36 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/death_pit.py b/prefabs/death_pit.py index 50d2a4f..7de2f76 100644 --- a/prefabs/death_pit.py +++ b/prefabs/death_pit.py @@ -15151,6 +15151,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 1260 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/diag_wall.py b/prefabs/diag_wall.py index 8a34cac..2801a46 100644 --- a/prefabs/diag_wall.py +++ b/prefabs/diag_wall.py @@ -751,6 +751,42 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 60 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) + for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/diag_wall_egypt.py b/prefabs/diag_wall_egypt.py index 4a78479..af31663 100644 --- a/prefabs/diag_wall_egypt.py +++ b/prefabs/diag_wall_egypt.py @@ -1615,6 +1615,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 132 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/diag_wall_stone.py b/prefabs/diag_wall_stone.py index 6692d1f..91d19ce 100644 --- a/prefabs/diag_wall_stone.py +++ b/prefabs/diag_wall_stone.py @@ -1399,6 +1399,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 114 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/ground.py b/prefabs/ground.py index 6c96d73..4920dd5 100644 --- a/prefabs/ground.py +++ b/prefabs/ground.py @@ -247,6 +247,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 18 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/ground_egypt.py b/prefabs/ground_egypt.py index c521a0b..5cb70aa 100644 --- a/prefabs/ground_egypt.py +++ b/prefabs/ground_egypt.py @@ -247,6 +247,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 18 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/ground_prefab.py b/prefabs/ground_prefab.py index 35bb7ae..38291ed 100644 --- a/prefabs/ground_prefab.py +++ b/prefabs/ground_prefab.py @@ -36,6 +36,41 @@ def createTile(posx, posy, id_num, world_id_num): values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/ground_stone.py b/prefabs/ground_stone.py index 46c1f42..f9db0c9 100644 --- a/prefabs/ground_stone.py +++ b/prefabs/ground_stone.py @@ -247,6 +247,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 18 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/heal.py b/prefabs/heal.py index 2462366..73e3729 100644 --- a/prefabs/heal.py +++ b/prefabs/heal.py @@ -463,6 +463,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 36 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/health_hut.py b/prefabs/health_hut.py index e51a366..dfa4015 100644 --- a/prefabs/health_hut.py +++ b/prefabs/health_hut.py @@ -1111,6 +1111,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 90 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/laser_array.py b/prefabs/laser_array.py index bbdc49a..c4ae336 100644 --- a/prefabs/laser_array.py +++ b/prefabs/laser_array.py @@ -1759,6 +1759,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 144 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/mini_spire.py b/prefabs/mini_spire.py index e22e9eb..9fb0dca 100644 --- a/prefabs/mini_spire.py +++ b/prefabs/mini_spire.py @@ -1760,6 +1760,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r values = "".join(lines)#converting list to string ogvalues = "".join(lines) + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) + for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) world_id_num += 1 diff --git a/prefabs/nuke.py b/prefabs/nuke.py index 9646eee..602851b 100644 --- a/prefabs/nuke.py +++ b/prefabs/nuke.py @@ -247,6 +247,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 18 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/ramp.py b/prefabs/ramp.py index 4c82eae..1ba4b6e 100644 --- a/prefabs/ramp.py +++ b/prefabs/ramp.py @@ -427,6 +427,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 33 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/respawn_blu.py b/prefabs/respawn_blu.py index 6d27094..c1dcbbf 100644 --- a/prefabs/respawn_blu.py +++ b/prefabs/respawn_blu.py @@ -3703,6 +3703,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 306 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/respawn_red.py b/prefabs/respawn_red.py index 44200a5..04782b8 100644 --- a/prefabs/respawn_red.py +++ b/prefabs/respawn_red.py @@ -3703,6 +3703,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 306 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/spike_prefab.py b/prefabs/spike_prefab.py index 31dd524..a48d93f 100644 --- a/prefabs/spike_prefab.py +++ b/prefabs/spike_prefab.py @@ -215,6 +215,41 @@ def createTile(posx, posy, id_num, world_id_num): var_count = 69 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/spire.py b/prefabs/spire.py index a63075f..f0b576e 100644 --- a/prefabs/spire.py +++ b/prefabs/spire.py @@ -859,6 +859,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 69 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/wall.py b/prefabs/wall.py index 1ea68a2..763753b 100644 --- a/prefabs/wall.py +++ b/prefabs/wall.py @@ -463,13 +463,64 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 36 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal for normal_num in range(1,var_count+1,3): normal_list=[] - for i in range(var_count+3): + for i in range(3): normal_list.append([]) for var in ["x", "y", "z"]: - normal_list[i].append(eval(var+str(normal_num))) + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) coords = get_normal(normal_list) response = evaluate(coords) if response == axislist[0]: @@ -547,18 +598,4 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r return values, id_num, world_id_num #### FINDING A NORMAL (A NORMAL IS A LINE PERPENDICULAR TO A FACE) -normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 -def evaluate(coords): - dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), - if dist_x >= dist_y and dist_x >= dist_z: - return axislist[0] - if dist_y >= dist_z: - return axislist[1] - return axislist[2] -def get_normal(coord_list): - vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) - vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) - - normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[2]-vector_a[1]*vector_b[0]) - return normal diff --git a/prefabs/wall_egypt.py b/prefabs/wall_egypt.py index 64bc40a..005aa42 100644 --- a/prefabs/wall_egypt.py +++ b/prefabs/wall_egypt.py @@ -895,6 +895,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 72 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1) diff --git a/prefabs/wall_stone.py b/prefabs/wall_stone.py index bc9ca00..9c45532 100644 --- a/prefabs/wall_stone.py +++ b/prefabs/wall_stone.py @@ -463,6 +463,41 @@ def createTile(posx, posy, id_num, world_id_num, entity_num, placeholder_list, r var_count = 36 values = "".join(lines)#converting list to string ogvalues = "".join(lines) + + normal_list,axislist,negaxislist,vaxis,uaxis=[],['1 0 0 1','0 1 0 1','0 0 1 1'],['-1 0 0 1','0 -1 0 1','0 0 -1 1'],0,0 + def evaluate(coords): + dist_x,dist_y,dist_z = abs(coords[0]),abs(coords[1]),abs(coords[2]), + if dist_x >= dist_y and dist_x >= dist_z: + return axislist[0] + if dist_y >= dist_z: + return axislist[1] + return axislist[2] + + def get_normal(coord_list): + vector_a = (coord_list[1][0]-coord_list[0][0],coord_list[1][1]-coord_list[0][1],coord_list[1][2]-coord_list[0][2]) + vector_b = (coord_list[2][0]-coord_list[0][0],coord_list[2][1]-coord_list[0][1],coord_list[2][2]-coord_list[0][2]) + + normal = (vector_a[1]*vector_b[2]-vector_a[2]*vector_b[1],vector_a[2]*vector_b[0]-vector_a[0]*vector_b[2],vector_a[0]*vector_b[1]-vector_a[1]*vector_b[0]) + return normal + + for normal_num in range(1,var_count+1,3): + normal_list=[] + for i in range(3): + normal_list.append([]) + for var in ["x", "y", "z"]: + normal_list[i].append(eval(var+str(normal_num+i))) + coords = get_normal(normal_list) + response = evaluate(coords) + if response == axislist[0]: + uaxis = axislist[1] + else: + uaxis = axislist[0] + if response == axislist[2]: + vaxis = negaxislist[1] + else: + vaxis = negaxislist[2] + values = values.replace('AXIS_REPLACE_U',uaxis,1) + values = values.replace('AXIS_REPLACE_V',vaxis,1) for i in range(ogvalues.count("world_idnum")): values = values.replace('world_idnum', str(world_id_num), 1)