aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/animationtimeline/TimelineMenu.tsx
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-08-01 17:00:10 -0400
committerandrewdkim <adkim414@gmail.com>2019-08-01 17:00:10 -0400
commitbf3d45f8a16d23384a308f65adfa9a2baee495af (patch)
tree15e8d74c57436a5987133bf5732764a8155bb282 /src/client/views/animationtimeline/TimelineMenu.tsx
parent59f3d2405870135314d00ea80acae0dc17b99955 (diff)
prosemirror
Diffstat (limited to 'src/client/views/animationtimeline/TimelineMenu.tsx')
-rw-r--r--src/client/views/animationtimeline/TimelineMenu.tsx47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/client/views/animationtimeline/TimelineMenu.tsx b/src/client/views/animationtimeline/TimelineMenu.tsx
new file mode 100644
index 000000000..e82075f6a
--- /dev/null
+++ b/src/client/views/animationtimeline/TimelineMenu.tsx
@@ -0,0 +1,47 @@
+
+import * as React from "react";
+
+
+/**
+ * TimelineMenu:
+ *
+ *
+ * Timeline:
+ * -
+ *
+ *
+ * Keyframe:
+ * - Delete keyframe
+ * - Move keyframe
+ * - Edit keyframe (shows schema)
+ *
+ *
+ * Region:
+ * - Add Keyframe
+ * - Copy Interpolation
+ * - Copy path
+ * - Add Interpolation
+ * - Add Path
+ * - Change fades
+ * - position region
+ * - duration region
+ * -
+ */
+export class TimelineMenu extends React.Component {
+ public static Instance:TimelineMenu;
+
+ constructor (props:Readonly<{}>){
+ super(props);
+ TimelineMenu.Instance = this;
+ }
+
+
+
+
+ render() {
+ return (
+ <div></div>
+ );
+ }
+
+} \ No newline at end of file