Merge pull request #115 from dwango/fix/compilation_errors_on_msbuild

Fix/compilation errors on msbuild
This commit is contained in:
yutopp
2019-01-07 15:00:00 +09:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ using System.Text;
namespace UniGLTF
{
public enum GlbChunkType : UInt32
public enum GlbChunkType : uint
{
JSON = 0x4E4F534A,
BIN = 0x004E4942,

View File

@@ -171,7 +171,7 @@ namespace UniGLTF
));
}
UnityPath(string value)
UnityPath(string value) : this()
{
Value = value.Replace("\\", "/");
}
@@ -239,7 +239,7 @@ namespace UniGLTF
}
/// <summary>
///
///
/// </summary>
/// <param name="fullPath">C:/path/to/file</param>
/// <returns></returns>