|
@@ -81,7 +81,7 @@ function init() {
|
|
|
// script.log(root.sequences.truc.viewStartTime.get();)
|
|
|
saveFile.set("sequence_autosave.json");
|
|
|
saveFile.setAttribute("readonly", true);
|
|
|
- importSequenceFile(saveFile);
|
|
|
+ //importSequenceFile(saveFile);
|
|
|
|
|
|
// var audioLayer = root.sequences.truc.layers.audio ;
|
|
|
// var newClip = audioLayer.clips.addItem();
|
|
@@ -1064,6 +1064,7 @@ function createNewGroup(isInOut){
|
|
|
//create a cue and a key in each layer at cursor position in selected sequence
|
|
|
var groups = local.getChild("values").groups;
|
|
|
var groupsList = util.getObjectProperties(groups, true, false);
|
|
|
+ // printMethodsAndProperties(groupsList);
|
|
|
// var index = groupsList.length == undefined ? 0 : groupsList.length;
|
|
|
var currentGroup;
|
|
|
|
|
@@ -1111,11 +1112,14 @@ function createNewGroup(isInOut){
|
|
|
for(var i=0;i<tl_layers.length; i++ ){
|
|
|
if(tl_layers[i].automation!=undefined){//only for mapping layers
|
|
|
// script.log(sequence_structure.keys.layers[layers[i].name]);
|
|
|
+ var newKeyValue = local.getChild("values").newGroup.layers.getChild(tl_layers[i].name).get();
|
|
|
+ script.log(newKeyValue);
|
|
|
var newKey = tl_layers[i].automation.addItem();
|
|
|
newKey.position.set(currentTime);
|
|
|
newKey.setName(currentGroup.name);
|
|
|
// script.log(currentGroup.name); //local.getChild("values").newGroup.layers.getChild().name
|
|
|
- newKey.value.set(local.getChild("values").newGroup.layers.getChild(tl_layers[i].name).get());
|
|
|
+ newKey.value.set(newKeyValue);
|
|
|
+
|
|
|
// newKey.value.set(Math.random());
|
|
|
keysContainer.addStringParameter(tl_layers[i].name, "",currentGroup.name );
|
|
|
currentGroup.addFloatParameter(tl_layers[i].name,tl_layers[i].name+" value" , currentGroup.name, 0., 1.);
|
|
@@ -1125,7 +1129,7 @@ function createNewGroup(isInOut){
|
|
|
var newKeyOut = tl_layers[i].automation.addItem();
|
|
|
newKeyOut.position.set(currentTime+5.);
|
|
|
newKeyOut.setName(currentGroup.name+"o");
|
|
|
- newKeyOut.value.set(local.getChild("values").newGroup.layers.getChild(tl_layers[i].name).get());
|
|
|
+ newKeyOut.value.set(newKeyValue);
|
|
|
// newKey.value.set(Math.random());
|
|
|
keysOutContainer.addStringParameter(tl_layers[i].name, "",currentGroup.name+"o" );
|
|
|
}
|