diff --git a/src/Editor/Panels/Inspector/Inspector.jsx b/src/Editor/Panels/Inspector/Inspector.jsx index 9bc61e12c..d778a1351 100644 --- a/src/Editor/Panels/Inspector/Inspector.jsx +++ b/src/Editor/Panels/Inspector/Inspector.jsx @@ -89,6 +89,7 @@ class Inspector extends Component { 'breakApart': ["clip", "button",], 'convertSelectionToButton': ["path", "text", "image", "multipath", "multiclip", "multicanvas"], 'convertSelectionToClip': ["path", "text", "image", "multipath", "multiclip", "multicanvas"], + 'exportSelectionAsWickobj': ["clip", "button"], 'editTimeline': ["clip", "button"], 'addAssetToCanvas': ["imageasset", "clipasset"], // 'alignX': [ "multipath"] // H.A. diff --git a/src/Editor/actionMap.js b/src/Editor/actionMap.js index 05f08adc6..28ccfee78 100644 --- a/src/Editor/actionMap.js +++ b/src/Editor/actionMap.js @@ -131,6 +131,12 @@ class ActionMapInterface extends Object { action: this.editor.breakApartSelection, id: 'action-break-apart', }, + exportSelectionAsWickobj: { + //icon: 'export-dark', + tooltip: 'Export as .wickobj file', + action: this.editor.exportSelectedClip, + id: 'action-export-selection-as-wickobj', + }, addTweenToSelection: { icon: 'addTween', tooltip: 'Add Tween to Frame(NYI)',