説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }