How to create dynamic grids in After Effects
olly
0:00 / 0:00
How to create dynamic grids in After Effects
61 279 просмотров · 1 г. назад
olly
58 тыс. подписчиков
61 279 просмотров · 1 г. назад
Get $50 off Motion Array’s Annual Plan here: https://motionarray.com/?artlist_aid=...
Get the project file + extra cool stuff here: https://payhip.com/OllySpin
Subscribe to the channel and drop a comment with any motion design topics you'd like to see covered next. Plus, stay tuned for occasional updates on my Instagram and TikTok—because once in a blue moon, I do post something there!
Instagram: / oliviero_s
TikTok: / oliviero_s
Expression to Center between guides:
For x position:
null1X = thisComp.layer("NULL X1").transform.xPosition;
null2X = thisComp.layer("NULL X2").transform.xPosition;
(null1X + null2X) / 2;
For Y position:
null1Y = thisComp.layer("NULL Y1").transform.yPosition;
null2Y = thisComp.layer("NULL Y2").transform.yPosition;
(null1Y + null2Y) / 2;
Expression for Power Pin effect:
var x = thisComp.layer("NULL X1").transform.xPosition;
var y = thisComp.layer("NULL Y1").transform.yPosition;
[x, y]