This commit is contained in:
2025-05-16 23:31:59 +08:00
parent 9e4fef3f1e
commit d891e3f0ee
1198 changed files with 274242 additions and 1558 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
namespace VLB
{
public static class MaterialModifier
{
public interface Interface
{
void SetMaterialProp(int nameID, float value);
void SetMaterialProp(int nameID, Vector4 value);
void SetMaterialProp(int nameID, Color value);
void SetMaterialProp(int nameID, Matrix4x4 value);
void SetMaterialProp(int nameID, Texture value);
}
public delegate void Callback(Interface owner);
}
}