Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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