Class

DuAEPropertyExpression

DuAEPropertyExpression(property)

This class describes an expression and the property containing it.
It is used by the cache engine of DuAEF to work on expressions without applying them and improve performance.
This class is very similar to DuAEProperty except it is lighter and faster, to improve the performance of the expression cache.
Constructor

# new DuAEPropertyExpression(property)

Constructs a new DuAEPropertyExpression
Parameters:
Name Type Description
property PropertyBase | DuAEPropertyExpression | DuAEProperty The property. If a DuAEPropertyExpression is provided, the constructor returns it (it does not make a copy).
This makes it easy to avoid type checking, as you can always pass any property or DuAEPropertyExpression to the constructor to be sure to handle a DuAEPropertyExpression, without any impact on performance.

View Source DuAEF_DuSan_api.jsxinc, line 17090

Members

Boolean

# changed

true if the expression has been changed in the cache and needs to be re-applied to the property.

View Source DuAEF_DuSan_api.jsxinc, line 17193

CompItem

# comp

The original composition containing the expression

View Source DuAEF_DuSan_api.jsxinc, line 17133

Boolean

# empty

true if there's no expression in this property

View Source DuAEF_DuSan_api.jsxinc, line 17140

string

# expression

The expression in the property

View Source DuAEF_DuSan_api.jsxinc, line 17185

Boolean

# isEffect

true if the property belongs to an effect.

View Source DuAEF_DuSan_api.jsxinc, line 17165

LayerItem

# layer

The original layer containing the expression

View Source DuAEF_DuSan_api.jsxinc, line 17126

Array.<int>

# parentIndices

The Array containing the indices in all parent property groups containing this property.
This is used to retrieve the property in case the object becomes invalid.

View Source DuAEF_DuSan_api.jsxinc, line 17157

PropertyBase

# property

The original property containing the expression

View Source DuAEF_DuSan_api.jsxinc, line 17119

Methods

# apply()

Applies the expression back to the actual properties in After Effects, if and only if it's been modified.

View Source DuAEF_DuSan_api.jsxinc, line 17223

# getProperty() → {PropertyBase}

Returns the original property, fixing it if the object has become invalid.

View Source DuAEF_DuSan_api.jsxinc, line 17206

The property.
PropertyBase