TextureLoadHandle.cs 177 B

1234567
  1. using System;
  2. using UnityEngine;
  3. namespace TriLib
  4. {
  5. public delegate void TextureLoadHandle(string sourcePath, Material material, string propertyName, Texture2D texture);
  6. }