Reputation: 153
I use Facebook Origami plugin and everything works well in the viewer – you have to click to see the animation.
But when I try to export the composition to .mov it generates a clip filled with a static image. How to "record" the interaction to make the animation visible?
Upvotes: -2
Views: 330
Reputation: 168
One way to do this is to "record" your mouse movements and then play them back for recording. You can do this either using a few Queue patches or via JavaScript. Record your interaction and then play it back when recording your movie.
Here's what it could look like in JavaScript:
var _values = []
var _index = 0
function (__number outputX, __number outputY, __boolean outputLeft) main (__number inputX, __number inputY, __boolean inputLeft, __boolean record, __boolean recordReset, __boolean play, __boolean playReset, __boolean resetValues, __number patchTime)
{
var result = new Object();
var x = 0;
var y = 0;
var left = false;
if (record) {
var value = new Object();
value.x = inputX;
value.y = inputY;
value.left = inputLeft;
_values.push(value);
x = inputX;
y = inputY;
left = inputLeft;
}
if (recordReset) {
_values = []
}
if (play) {
x = _values[_index] ? _values[_index].x : x;
y = _values[_index] ? _values[_index].y : y;
left = _values[_index] ? _values[_index].left : left;
_index++;
}
if (playReset) {
_index = 0;
}
result.outputX = x;
result.outputY = y;
result.outputLeft = left;
return result;
}
Upvotes: 0