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.jsxinc, line 19080

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.jsxinc, line 19183

CompItem

# comp

The original composition containing the expression

View Source DuAEF.jsxinc, line 19123

Boolean

# empty

true if there's no expression in this property

View Source DuAEF.jsxinc, line 19130

string

# expression

The expression in the property

View Source DuAEF.jsxinc, line 19175

Boolean

# inError

true if the expression has an error

View Source DuAEF.jsxinc, line 19191

Boolean

# isEffect

true if the property belongs to an effect.

View Source DuAEF.jsxinc, line 19155

LayerItem

# layer

The original layer containing the expression

View Source DuAEF.jsxinc, line 19116

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.jsxinc, line 19147

PropertyBase

# property

The original property containing the expression

View Source DuAEF.jsxinc, line 19109

Methods

# apply(onlyIfNoErroropt)

Applies the expression back to the actual properties in After Effects, if and only if it's been modified.
Parameters:
Name Type Attributes Default Description
onlyIfNoError boolean <optional>
false If true, applies the expression only if it doesn't generate an error

View Source DuAEF.jsxinc, line 19222

# getProperty() → {PropertyBase}

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

View Source DuAEF.jsxinc, line 19204

The property.
PropertyBase