Implemented road & road mesh generator.

This commit is contained in:
2015-06-02 20:50:59 +03:00
parent 61a05289d3
commit f9b20b0226
27 changed files with 730 additions and 53 deletions

View File

@ -61,6 +61,10 @@ namespace TransportGame.Utils
case Level.Critical:
UnityEngine.Debug.LogError(String.Format(format, args));
break;
case Level.Info:
UnityEngine.Debug.Log(String.Format(format, args));
break;
}
}
}