Add comments

This commit is contained in:
Masataka SUMI
2025-08-21 15:06:00 +09:00
parent 90e7c2f588
commit 559a32fc97
4 changed files with 12 additions and 0 deletions

View File

@@ -5,6 +5,9 @@ using UnityEngine;
namespace VRM
{
/// <summary>
/// A class that generates MaterialDescriptor by considering the VRM 0.X extension included in the glTF data to be imported.
/// </summary>
public sealed class BuiltInVrmMaterialDescriptorGenerator : IMaterialDescriptorGenerator
{
private readonly glTF_VRM_extensions _vrm;

View File

@@ -5,6 +5,9 @@ using UnityEngine;
namespace VRM
{
/// <summary>
/// A class that generates MaterialDescriptor by considering the VRM 0.X extension included in the glTF data to be imported.
/// </summary>
public sealed class UrpVrmMaterialDescriptorGenerator : IMaterialDescriptorGenerator
{
private readonly glTF_VRM_extensions _vrm;

View File

@@ -5,6 +5,9 @@ using UnityEngine;
namespace UniVRM10
{
/// <summary>
/// A class that generates MaterialDescriptor by considering the VRM 1.0 extension included in the glTF data to be imported.
/// </summary>
public sealed class BuiltInVrm10MaterialDescriptorGenerator : IMaterialDescriptorGenerator
{
public BuiltInGltfPbrMaterialImporter PbrMaterialImporter { get; } = new();

View File

@@ -5,6 +5,9 @@ using UnityEngine;
namespace UniVRM10
{
/// <summary>
/// A class that generates MaterialDescriptor by considering the VRM 1.0 extension included in the glTF data to be imported.
/// </summary>
public sealed class UrpVrm10MaterialDescriptorGenerator : IMaterialDescriptorGenerator
{
public UrpGltfPbrMaterialImporter PbrMaterialImporter { get; } = new();