CryEngine.Material.GetSubmaterial C# (CSharp) 메소드

GetSubmaterial() 공개 메소드

Gets a submaterial by slot.
public GetSubmaterial ( int slot ) : Material
slot int
리턴 Material
        public Material GetSubmaterial(int slot)
        {
            var ptr = NativeMaterialMethods.GetSubMaterial(Handle, slot);

            return TryGet(ptr);
        }