浏览代码

added cam automation script

can look ahead in an automation to automate move
eLandon 4 年之前
父节点
当前提交
d41e29d663
共有 3 个文件被更改,包括 2499 次插入236 次删除
  1. 102 0
      soft/camAutomationTrigger.js
  2. 1 1
      soft/lyreCam.noisette
  3. 2396 235
      soft/sequence_autosave.json

+ 102 - 0
soft/camAutomationTrigger.js

@@ -0,0 +1,102 @@
+
+/* ********** GENERAL SCRIPTING **********************
+
+		This templates shows what you can do in this is module script
+		All the code outside functions will be executed each time this script is loaded, meaning at file load, when hitting the "reload" button or when saving this file
+*/
+
+
+// You can add custom parameters to use in your script here, they will be replaced each time this script is saved
+var myFloatParam = script.addFloatParameter("My Float Param","Description of my float param",.1,0,1); 		//This will add a float number parameter (slider), default value of 0.1, with a range between 0 and 1
+
+//Here are all the type of parameters you can create
+/*
+var myTrigger = script.addTrigger("My Trigger", "Trigger description"); 									//This will add a trigger (button)
+var myBoolParam = script.addBoolParameter("My Bool Param","Description of my bool param",false); 			//This will add a boolean parameter (toggle), defaut unchecked
+var myFloatParam = script.addFloatParameter("My Float Param","Description of my float param",.1,0,1); 		//This will add a float number parameter (slider), default value of 0.1, with a range between 0 and 1
+var myIntParam = script.addIntParameter("My Int Param","Description of my int param",2,0,10); 				//This will add an integer number parameter (stepper), default value of 2, with a range between 0 and 10
+var myStringParam = script.addStringParameter("My String Param","Description of my string param", "cool");	//This will add a string parameter (text field), default value is "cool"
+var myColorParam = script.addColorParameter("My Color Param","Description of my color param",0xff0000ff); 	//This will add a color parameter (color picker), default value of opaque blue (ARGB)
+var myP2DParam = script.addPoint2DParameter("My P2D Param","Description of my p2d param"); 					//This will add a point 2d parameter
+var myP3DParam = script.addPoint3DParameter("My P3D Param","Description of my p3d param"); 					//This will add a point 3d parameter
+var myTargetParam = script.addTargetParameter("My Target Param","Description of my target param"); 			//This will add a target parameter (to reference another parameter)
+var myEnumParam = script.addEnumParameter("My Enum Param","Description of my enum param",					//This will add a enum parameter (dropdown with options)
+											"Option 1", 1,													//Each pair of values after the first 2 arguments define an option and its linked data
+											"Option 2", 5,												    //First argument of an option is the label (string)
+											"Option 3", "banana"											//Second argument is the value, it can be whatever you want
+											); 	
+*/
+
+
+//you can also declare custom internal variable
+//var myValue = 5;
+
+/*
+ The init() function will allow you to init everything you want after the script has been checked and loaded
+ WARNING it also means that if you change values of your parameters by hand and set their values inside the init() function, they will be reset to this value each time the script is reloaded !
+*/
+function init()
+{
+	//myFloatParam.set(5); //The .set() function set the parameter to this value.
+	//myColorParam.set([1,.5,1,1]);	//for a color parameter, you need to pass an array with 3 (RGB) or 4 (RGBA) values.
+	//myP2DParam.set([1.5,-5]); // for a Point2D parameter, you need to pass 2 values (XY)
+	//myP3DParam.set([1.5,2,-3]); // for a Point3D parameter, you need to pass 3 values (XYZ)
+}
+
+/*
+ This function will be called each time a parameter of your script has changed
+*/
+function scriptParameterChanged(param)
+{
+	//You can use the script.log() function to show an information inside the logger panel. To be able to actuallt see it in the logger panel, you will have to turn on "Log" on this script.
+	script.log("Parameter changed : "+param.name); //All parameters have "name" property
+	if(param.is(myTrigger)) script.log("Trigger !"); //You can check if two variables are the reference to the same parameter or object with the method .is()
+	else if(param.is(myEnumParam)) script.log("Key = "+param.getKey()+", data = "+param.get()); //The enum parameter has a special function getKey() to get the key associated to the option. .get() will give you the data associated
+	else script.log("Value is "+param.get()); //All parameters have a get() method that will return their value
+}
+
+/*
+ This function, if you declare it, will launch a timer at 50hz, calling this method on each tick
+*/
+/*
+function update(deltaTime)
+{
+	script.log("Update : "+util.getTime()+", delta = "+deltaTime); //deltaTime is the time between now and last update() call, util.getTime() will give you a timestamp relative to either the launch time of the software, or the start of the computer.
+}
+*/
+
+
+
+/* ********** COMMAND SPECIFIC SCRIPTING ********************** */
+
+
+/*
+If this script is in a mapping, then this will be called whenever the value from the mapping is updated
+*/
+function setValue(value)
+{
+	script.log("Set value "+value);
+}
+
+/*
+This will be called either when the consequence is triggered if it is in an Action, or just after setValue() if it is in a Mapping
+*/
+function trigger()
+{
+
+	var sequence = root.sequences.keys;
+	var layer = sequence.layers.camZoom;
+	var time =  sequence.currentTime.get() ;
+
+	myFloatParam.set(layer.automation.getValueAtPosition(time+10.));
+	var currentKey = layer.automation.getKeyAtPosition(time);
+	var nextKey = layer.automation.getItemAfter(currentKey);
+	if(nextKey!=undefined){
+		
+		var duration = nextKey.position.get() - time;
+		var value = nextKey.value.get();
+		root.customVariables.camAutomation.variables.value.value.set(value);
+		root.customVariables.camAutomation.variables.time.time.set(duration);
+	}
+
+}

文件差异内容过多而无法显示
+ 1 - 1
soft/lyreCam.noisette


文件差异内容过多而无法显示
+ 2396 - 235
soft/sequence_autosave.json