ThreeDModelLayer object¶
app.project.item(index).layer(index)
Note
This functionality was added in After Effects 24.4
Description¶
The ThreeDModelLayer object represents a 3D Model layer within a composition.
Info
ThreeDModelLayer is a subclass of AVLayer object. All methods and attributes of AVLayer are available when working with ThreeDModelLayer.
AE Properties¶
ThreeDModelLayer inherits the following properties and property groups from AVLayer object:
- Marker
- Time Remap
- Transform
- Anchor Point
- Position
- Scale
- Orientation
- X Rotation
- Y Rotation
- Rotation
- Opacity
- Layer Styles
- Audio
- AudioLevels
Example¶
If the first item in the project is a CompItem, and the first layer of that CompItem is an ThreeDModelLayer, the following checks its type.
var modelLayer = app.project.item(1).layer(1);
if (modelLayer instanceof ThreeDModelLayer)
{
// do something
}