Skip to content

Commit 60a32f5

Browse files
committed
2 parents 51d2878 + fcb150b commit 60a32f5

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs.motiondeveloper.com

src/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,14 @@ export class MarkerKey {
9292
* Whether the marker represents a protected region
9393
*/
9494
readonly protectedRegion: boolean = false;
95+
/**
96+
* The location of the marker in time
97+
*/
98+
readonly time: number = 0;
99+
/**
100+
* The index of the marker
101+
*/
102+
readonly index: number = 1;
95103
}
96104

97105
export class MarkerProperty {
@@ -128,6 +136,10 @@ export class Comp {
128136
* The Camera object for the camera through which the composition is rendered at the current frame. This camera is not necessarily the camera through which you are looking in the Composition panel.
129137
*/
130138
readonly activeCamera: Camera = new Camera();
139+
/**
140+
* The marker property group object
141+
*/
142+
readonly marker?: MarkerProperty = new MarkerProperty();
131143
/**
132144
* The composition width in pixels
133145
*/

0 commit comments

Comments
 (0)