Skip to content

AttributeOut -> SpecialKey

function Fusion.AttributeOut(
    attributeName: string
): SpecialKey

Given an attribute name, returns a special key which can output values from attributes of that name.

When paired with a value object in a property table, the special key sets the value when the attribute changes.


Parameters

attributeName : string

The name of the attribute that the special key should target.


Returns -> SpecialKey

A special key for outputting values from attributes of that name.

Back to top