mirror of
https://github.com/tym1116/BH3.git
synced 2026-02-04 08:45:06 +01:00
14 lines
206 B
C#
14 lines
206 B
C#
using UnityEngine;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public abstract class MaterialFader : IAlphaFader
|
|
{
|
|
protected Material _material;
|
|
|
|
protected int _propertyID;
|
|
|
|
public abstract void LerpAlpha(float t);
|
|
}
|
|
}
|