Skip to content

Commit

Permalink
preparation for v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiboz committed May 6, 2018
1 parent 325f0e6 commit 1bca37b
Show file tree
Hide file tree
Showing 26 changed files with 166 additions and 4,291 deletions.
4 changes: 2 additions & 2 deletions Layouts/Editor/LayoutPathEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@ public override void OnInspectorGUI()
GUILayout.Space(10);
GUI.backgroundColor = new Color32(248, 200, 81, 255);
GUILayout.Label("Import from Moose Procedural Rally stages", EditorStyles.boldLabel);
if (GUILayout.Button("Import road_data.bin"))
if (GUILayout.Button("Import spline.rsd"))
{
var path = EditorUtility.OpenFilePanel("Select the road_data.bin file", "", "bin");
var path = EditorUtility.OpenFilePanel("Select the spline.rsd file", "", "rsd");
if (path.Length != 0)
{
if (layoutPath.ImportMooseBin(path))
Expand Down
1 change: 1 addition & 0 deletions Layouts/LayoutPath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ public bool ImportMooseBin(string fileName)
{
points.Clear();
var b = new BinaryReader(File.Open(fileName, FileMode.Open));
var version = b.ReadUInt32();
var numPoints = b.ReadUInt32();
for (var i = 0; i < numPoints; i++)
{
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### V1.8.0 - 2018/05/06
- Moose import path;
- Shader update;

### V1.7.0 - 2018/04/03
- Added semaphore lights system;

Expand Down
319 changes: 159 additions & 160 deletions Shaders/grs_PhysRoadv2.shader

Large diffs are not rendered by default.

9 changes: 0 additions & 9 deletions VertexPaint.meta

This file was deleted.

9 changes: 0 additions & 9 deletions VertexPaint/Editor.meta

This file was deleted.

13 changes: 0 additions & 13 deletions VertexPaint/Editor/ColorSwatches.cs

This file was deleted.

12 changes: 0 additions & 12 deletions VertexPaint/Editor/ColorSwatches.cs.meta

This file was deleted.

38 changes: 0 additions & 38 deletions VertexPaint/Editor/RxLookingGlass.cs

This file was deleted.

12 changes: 0 additions & 12 deletions VertexPaint/Editor/RxLookingGlass.cs.meta

This file was deleted.

53 changes: 0 additions & 53 deletions VertexPaint/Editor/VertexPainterWindow.cs

This file was deleted.

12 changes: 0 additions & 12 deletions VertexPaint/Editor/VertexPainterWindow.cs.meta

This file was deleted.

Loading

0 comments on commit 1bca37b

Please sign in to comment.