Kasper Karlgren c84494a697 new files
2025-01-21 13:54:40 +01:00

17 lines
506 B
C#

// Distant Lands 2024
// COZY: Stylized Weather 3
// All code included in this file is protected under the Unity Asset Store Eula
using UnityEditor;
namespace DistantLands.Cozy.EditorScripts
{
public class EmptyShaderGUI : MaterialEditor
{
public override void OnInspectorGUI()
{
EditorGUILayout.HelpBox("Material generated at runtime by COZY: Stylized Weather 2. Edit material properties within COZY's editor", MessageType.Info);
}
}
}