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.

ISGControlledElement.cs 603B

1234567891011121314151617181920212223
  1. using System;
  2. using UnityEditor.ShaderGraph;
  3. namespace UnityEditor.ShaderGraph.Drawing
  4. {
  5. interface ISGControlledElement
  6. {
  7. SGController controller
  8. {
  9. get;
  10. }
  11. void OnControllerChanged(ref SGControllerChangedEvent e);
  12. void OnControllerEvent(SGControllerEvent e);
  13. }
  14. interface ISGControlledElement<T> : ISGControlledElement where T : SGController
  15. {
  16. // This provides a way to access the controller of a ControlledElement at both the base class SGController level and child class level
  17. new T controller { get; }
  18. }
  19. }