UnityGame/Library/PackageCache/com.unity.shadergraph/Editor/Drawing/Interfaces/ISGControlledElement.cs

24 lines
603 B
C#
Raw Normal View History

2024-10-27 10:53:47 +03:00
using System;
using UnityEditor.ShaderGraph;
namespace UnityEditor.ShaderGraph.Drawing
{
interface ISGControlledElement
{
SGController controller
{
get;
}
void OnControllerChanged(ref SGControllerChangedEvent e);
void OnControllerEvent(SGControllerEvent e);
}
interface ISGControlledElement<T> : ISGControlledElement where T : SGController
{
// This provides a way to access the controller of a ControlledElement at both the base class SGController level and child class level
new T controller { get; }
}
}