12345678910111213141516171819202122232425262728 |
- using System;
- using Sirenix.OdinInspector;
- namespace KairoEngine.Core
- {
- public class IconFoldoutGroupAttribute : PropertyGroupAttribute
- {
- public string iconPath;
- public string text;
- public IconFoldoutGroupAttribute(string path) : base(path) { }
- public IconFoldoutGroupAttribute(string path, string iconPath) : base(path)
- {
- this.text = path;
- this.iconPath = iconPath;
- }
- protected override void CombineValuesWith(PropertyGroupAttribute other)
- {
- var otherAttr = (IconFoldoutGroupAttribute)other;
- }
- }
- }
|