You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/index.ts
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,14 @@ export class MarkerKey {
92
92
* Whether the marker represents a protected region
93
93
*/
94
94
readonlyprotectedRegion: boolean=false;
95
+
/**
96
+
* The location of the marker in time
97
+
*/
98
+
readonlytime: number=0;
99
+
/**
100
+
* The index of the marker
101
+
*/
102
+
readonlyindex: number=1;
95
103
}
96
104
97
105
exportclassMarkerProperty{
@@ -128,6 +136,10 @@ export class Comp {
128
136
* 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.
0 commit comments