설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PropertyAttributes.cs 406B

123456789101112
  1. namespace Unity.Mathematics
  2. {
  3. /// <summary>
  4. /// Used by property drawers when vectors should be post normalized.
  5. /// </summary>
  6. public class PostNormalizeAttribute : UnityEngine.PropertyAttribute {}
  7. /// <summary>
  8. /// Used by property drawers when vectors should not be normalized.
  9. /// </summary>
  10. public class DoNotNormalizeAttribute : UnityEngine.PropertyAttribute {}
  11. }