Skip to content

Commit a416492

Browse files
committed
0.1.5
1 parent d44d746 commit a416492

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Assets/MapEditor/Editor/PrefabDataHolderEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ public override void OnInspectorGUI()
1414
Functions.PrefabID(script);
1515
Functions.SnapToGround(script);
1616
Functions.ToggleLights(script);
17-
Functions.BreakPrefab(script);
17+
//Functions.BreakPrefab(script);
1818
}
1919
}

Assets/MapEditor/WorldData/TopologyData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public static TerrainMap<int> GetTerrainMap()
2525
for (int j = 0; j < topology.res; j++)
2626
{
2727
if ((topology[i, j] & layer) != 0)
28-
splatMap[i, j, 0] = float.MinValue;
28+
splatMap[i, j, 0] = 1f;
2929
else
30-
splatMap[i, j, 1] = float.MaxValue;
30+
splatMap[i, j, 1] = 1f;
3131
}
3232
});
3333
return splatMap;

0 commit comments

Comments
 (0)