mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +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);
|
|
}
|
|
}
|