-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathAdd_Value_To_Selected_Keyframes.jsx
More file actions
73 lines (68 loc) · 2.55 KB
/
Copy pathAdd_Value_To_Selected_Keyframes.jsx
File metadata and controls
73 lines (68 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* @name Add Value To Selected Keyframes
* @version 1.0
* @author Kyle Martinez <www.kyle-martinez.com>
*
* @description Add a provided value to all selected keyframe values. Currently supports basic
* properties with 1, 2, or 3 dimensions.
*
* @license This script is provided "as is," without warranty of any kind, expressed or implied. In
* no event shall the author be held liable for any damages arising in any way from the use of this
* script.
*
* I'm just trying to help make life as an After Effects animator a little easier.
*/
(function addToSelectedKeyframes() {
function addValue(oldValue, amount) {
return oldValue + amount;
}
function addValues(oldValues, amount) {
var newValues = [];
var numOldValues = oldValues.length;
for (var v = 0; v < numOldValues; v++) {
newValues.push(addValue(oldValues[v], amount));
}
return newValues;
}
function addToKeyframeValues(property, amount) {
var propertyValueType = property.propertyValueType;
var keys = property.selectedKeys;
var numKeys = keys.length;
for (var k = 0; k < numKeys; k++) {
var index = keys[k];
var oldKeyValue = property.keyValue(index);
var newKeyValue = oldKeyValue;
switch (propertyValueType) {
case PropertyValueType.OneD:
newKeyValue = addValue(oldKeyValue, amount);
break;
case PropertyValueType.TwoD:
case PropertyValueType.TwoD_SPATIAL:
case PropertyValueType.ThreeD:
case PropertyValueType.ThreeD_SPATIAL:
newKeyValue = addValues(oldKeyValue, amount);
break;
default:
break;
}
property.setValueAtKey(index, newKeyValue);
}
}
app.beginUndoGroup("Add to Selected Keyframe(s)");
var comp = app.project.activeItem;
var amountString = prompt("Amount", "0");
if (amountString !== null && amountString.length > 0) {
var amount = parseFloat(amountString);
var properties = comp.selectedProperties;
var numProperties = properties.length;
for (var p = 0; p < numProperties; p++) {
var property = properties[p];
if (property.propertyType === PropertyType.PROPERTY) {
if (property.isTimeVarying === true) {
addToKeyframeValues(property, amount);
}
}
}
}
app.endUndoGroup();
})();