mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-14 23:10:46 -05:00
Merge pull request #115 from dwango/fix/compilation_errors_on_msbuild
Fix/compilation errors on msbuild
This commit is contained in:
@@ -4,7 +4,7 @@ using System.Text;
|
||||
|
||||
namespace UniGLTF
|
||||
{
|
||||
public enum GlbChunkType : UInt32
|
||||
public enum GlbChunkType : uint
|
||||
{
|
||||
JSON = 0x4E4F534A,
|
||||
BIN = 0x004E4942,
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user