Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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