File size: 406 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | namespace Unity.Mathematics
{
/// <summary>
/// Used by property drawers when vectors should be post normalized.
/// </summary>
public class PostNormalizeAttribute : UnityEngine.PropertyAttribute {}
/// <summary>
/// Used by property drawers when vectors should not be normalized.
/// </summary>
public class DoNotNormalizeAttribute : UnityEngine.PropertyAttribute {}
}
|