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

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

CompItem

# comp

The original composition containing the expression

View Source DuAEF_DuGR_api.jsxinc, line 18214

Boolean

# empty

true if there's no expression in this property

View Source DuAEF_DuGR_api.jsxinc, line 18221

string

# expression

The expression in the property

View Source DuAEF_DuGR_api.jsxinc, line 18266

Boolean

# isEffect

true if the property belongs to an effect.

View Source DuAEF_DuGR_api.jsxinc, line 18246

LayerItem

# layer

The original layer containing the expression

View Source DuAEF_DuGR_api.jsxinc, line 18207

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

PropertyBase

# property

The original property containing the expression

View Source DuAEF_DuGR_api.jsxinc, line 18200

Methods

# apply()

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

View Source DuAEF_DuGR_api.jsxinc, line 18304

# getProperty() → {PropertyBase}

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

View Source DuAEF_DuGR_api.jsxinc, line 18287

The property.
PropertyBase