Initial upload
This commit is contained in:
16
Editor/Contracts/IMaterialUIScopeContainer.cs
Normal file
16
Editor/Contracts/IMaterialUIScopeContainer.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEditor;
|
||||
|
||||
namespace Misaki.ShaderGUI
|
||||
{
|
||||
public interface IMaterialUIScopeContainer
|
||||
{
|
||||
public void AddUIScope(IMaterialUIScope scope);
|
||||
|
||||
public T GetUIScope<T>() where T : class, IMaterialUIScope;
|
||||
|
||||
public void Initialize(MaterialEditor materialEditor, MaterialProperty[] properties);
|
||||
|
||||
public void DrawShaderGUI(IEnumerable<MaterialProperty> properties);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user