Browse Source

export for InOut

eLandon 4 years ago
parent
commit
24837e93a7
1 changed files with 11 additions and 0 deletions
  1. 11 0
      SequenceMgr.js

+ 11 - 0
SequenceMgr.js

@@ -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();
 
 	//collect values
 	var values = local.getChild("values");
+
+	//groups
 	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(){
 								// script.log(currentKey.get());
 
 								if(isInOut){
+									
 									var tl_keyOut = tl_layer.automation.getItemWithName(keyName+"o");
 									tl_keyOut.position.set(groupTimeOut);
 									//set keyOut value to keyIn value