Rename GltfParser to IGltfData

This commit is contained in:
Masataka SUMI
2021-06-27 21:45:30 +09:00
parent 7b3303b820
commit e5ca1346a5
55 changed files with 278 additions and 278 deletions

View File

@@ -87,7 +87,7 @@ namespace VRM.Samples
// なんらかの方法でByte列を得た
// GLB形式でJSONを取得しParseします
var parser = new GltfParser();
var parser = new IGltfData();
parser.Parse(path, bytes);
using (var context = new VRMImporterContext(parser))
@@ -132,7 +132,7 @@ namespace VRM.Samples
// なんらかの方法でByte列を得た
// GLB形式でJSONを取得しParseします
var parser = new GltfParser();
var parser = new IGltfData();
parser.ParseGlb(bytes);
var context = new VRMImporterContext(parser);