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.

IInspectorChangeHandler.cs 566B

1234567891011121314
  1. namespace UnityEditor.Timeline
  2. {
  3. /// <summary>
  4. /// Implement this interface in your PlayableAsset inspector to change what happens when a UI component in the inspector is modified
  5. /// </summary>
  6. /// <remarks>The default PlayableAsset inspector will cause any UI change to force a PlayableGraph rebuild</remarks>
  7. public interface IInspectorChangeHandler
  8. {
  9. /// <summary>
  10. /// This method will be called when a Playable Asset inspector is modified.
  11. /// </summary>
  12. void OnPlayableAssetChangedInInspector();
  13. }
  14. }