Add comments

This commit is contained in:
Masataka SUMI
2021-06-28 00:33:31 +09:00
parent 3ed5c4fe5c
commit 8ce79f7cdd
5 changed files with 11 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ namespace UniGLTF
MigrationFlags = migrationFlags;
}
public static GltfData CreateFromGltfData(glTF gltf)
public static GltfData CreateFromGltfDataForTest(glTF gltf)
{
return new GltfData(
string.Empty,

View File

@@ -2,6 +2,9 @@
namespace UniGLTF
{
/// <summary>
/// .GLB file parser.
/// </summary>
public sealed class GlbFileParser
{
private readonly string _path;

View File

@@ -6,6 +6,10 @@ using UniJSON;
namespace UniGLTF
{
/// <summary>
/// Low-level API.
/// Parse from specified path & specified binary.
/// </summary>
public sealed class GlbLowLevelParser
{
private readonly string _path;

View File

@@ -7,7 +7,7 @@ using System.Text;
namespace UniGLTF
{
/// <summary>
/// Zip archived .GLTF file parser.
/// Zip archived .GLTF file & resources parser.
/// </summary>
public sealed class ZipArchivedGltfFileParser
{

View File

@@ -17,7 +17,7 @@ namespace VRM
public void TextureEnumerationTest()
{
{
var data = GltfData.CreateFromGltfData(
var data = GltfData.CreateFromGltfDataForTest(
new glTF
{
images = new List<glTFImage>
@@ -88,7 +88,7 @@ namespace VRM
[Test]
public void TextureEnumerationInUnknownShader()
{
var data = GltfData.CreateFromGltfData(
var data = GltfData.CreateFromGltfDataForTest(
new glTF
{
images = new List<glTFImage>