Last active
December 3, 2017 15:32
-
-
Save genakim/b25313b606efb36f66f897d392ce2209 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// циклы анимации после ключевых кадров | |
loopOut() | |
loopOut("pingpong") | |
loopOut("continue") | |
loopOut("offset") | |
// зациклить после анимации последние n ключей | |
loopOut("cycle", n) | |
// цикл анимации до начала ключевых кадров | |
// после ключевых кадров цикл останавливается | |
loopIn() | |
// зациклить время | |
loopOutDuration("cycle", framesToTime(10)); | |
// устанавливает зависимость от определенного параметра к текущему | |
linear(paramValue, paramValueMin, paramValueMax, thisValueFrom, thisValueTo); | |
ease(paramValue, paramValueMin, paramValueMax, thisValueFrom, thisValueTo); | |
// значение параметра во времени | |
// valueAtTime(sec) | |
posMain = thisComp.layer("Main_Bar").transform.position; | |
delay = thisComp.layer("Delay").effect("Delay")("Slider"); | |
oneFrame = thisComp.frameDuration; | |
newY = posMain.valueAtTime(time - delay * oneFrame * index); | |
// текущее значение параметра | |
[value[0], value[1]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment