Attribute : AngleDisplayAs - Displays either a radian or euler float as the opposite
This commit is contained in:
parent
6e3bd4df70
commit
df1d2f6df1
8 changed files with 89 additions and 1 deletions
16
Runtime/Drawers/AngleDisplayAsAttribute.cs
Normal file
16
Runtime/Drawers/AngleDisplayAsAttribute.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace Module.Inspector
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
|
||||
public sealed class AngleDisplayAsAttribute : DrawerPropertyAttribute
|
||||
{
|
||||
public readonly EAngle type;
|
||||
|
||||
public AngleDisplayAsAttribute(EAngle type)
|
||||
{
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue