32bede1526
The default value for outputs is 'None' but the outputs can overwrite the default value with an attribute. This default value is used for all symbol children. Additionaly each symbol child can configure a different trigger type in composition context. This is done via the RMB menu on an output.
9 lines
225 B
C#
9 lines
225 B
C#
using T3.Core.Operator.Slots;
|
|
|
|
namespace T3.Core.Operator.Attributes
|
|
{
|
|
public class OutputAttribute : OperatorAttribute
|
|
{
|
|
public DirtyFlagTrigger DirtyFlagTrigger { get; set; } = DirtyFlagTrigger.None;
|
|
}
|
|
} |