暂无描述
您最多选择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. }