123456789101112131415161718 |
- using System;
- using TriLibCore.General;
- using UnityEngine;
- namespace TriLibCore.HDRP
- {
-
-
-
- public class HDRPVirtualMaterial : VirtualMaterial
- {
- public Texture MetallicTexture;
- public Texture OcclusionTexture;
- public Texture DetailMaskTexture;
- [Obsolete("Not used anymore.")]
- public Texture SmoothnessTexture;
- }
- }
|