|
@@ -387,17 +387,27 @@ function exportSequenceFile(fileObj){
|
|
|
exportData.parameters["Sequence"] = parameters.sequence.getKey();
|
|
|
exportData.parameters["Synchronize"] = parameters.synchronize.get();
|
|
|
exportData.parameters["Sync Rate"] = parameters.syncRate.get();
|
|
|
+ exportData.parameters["monitorKeysCues"] = parameters.monitorKeysCues.get();
|
|
|
|
|
|
|
|
|
var values = local.getChild("values");
|
|
|
+
|
|
|
+
|
|
|
var groups = values.groups;
|
|
|
var groupsList=util.getObjectProperties(groups, true, false);
|
|
|
if(groupsList.length){
|
|
|
for(var i=0; i<groupsList.length; i++){
|
|
|
var exportGroup = exportData.values.groups[groupsList[i]] = {cue:"", time:0., groupKeys:{}};
|
|
|
var currentGroup = groups.getChild(groupsList[i]);
|
|
|
+
|
|
|
exportGroup.cue = currentGroup.cue.name;
|
|
|
exportGroup.time = currentGroup.cue.get();
|
|
|
+ var isInOut = currentGroup.getChild("keysOut") ;
|
|
|
+ if(isInOut){
|
|
|
+ exportGroup.cueOut = currentGroup.cueOut.name;
|
|
|
+ exportGroup.timeOut = currentGroup.cueOut.get();
|
|
|
+ }
|
|
|
+
|
|
|
var currentGroupLayers = util.getObjectProperties(currentGroup.keys, true, false);
|
|
|
if (currentGroupLayers.length){
|
|
|
for(var j=0; j<currentGroupLayers.length; j++){
|
|
@@ -862,6 +872,7 @@ function struct_updateValuesFromSeq(){
|
|
|
|
|
|
|
|
|
if(isInOut){
|
|
|
+
|
|
|
var tl_keyOut = tl_layer.automation.getItemWithName(keyName+"o");
|
|
|
tl_keyOut.position.set(groupTimeOut);
|
|
|
|