first commit
This commit is contained in:
13
NitroxClient/Debuggers/Drawer/Unity/MaterialDrawer.cs
Normal file
13
NitroxClient/Debuggers/Drawer/Unity/MaterialDrawer.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace NitroxClient.Debuggers.Drawer.Unity;
|
||||
|
||||
public class MaterialDrawer : IEditorDrawer<Material>
|
||||
{
|
||||
public Material Draw(Material material)
|
||||
{
|
||||
// TODO: Implement Material picker
|
||||
GUILayout.Box(material.name, GUILayout.Width(150), GUILayout.Height(20));
|
||||
return material;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user