Files
cynic 32bede1526 The dirty flag trigger is now configurable
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.
2020-04-27 22:56:40 +02:00

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