Dynamic Layer Scaling in AE: So Easy, So Powerful!

Поделиться
HTML-код
  • Опубликовано: 16 дек 2024

Комментарии • 19

  • @timcity
    @timcity Месяц назад

    you might be the best motion type creator on RUclips. thank you for everything you do. the motion community truly values you. ❤❤❤❤

  • @Big_Llama
    @Big_Llama Месяц назад +1

    These little expression tips are SO helpful! They feel so much more approachable than other longer tutorials about it

    • @MasdLab
      @MasdLab  Месяц назад

      Thank you I’m glad they are helpful! Hoo tell me about it. Sometimes I watch a 10 min video and by the end I get want I want + frustration ehe I like to make my videos short hehe

  • @exogendesign4582
    @exogendesign4582 Месяц назад +2

    Someone in reddit is pulling his hairs out to figure this out he just posted right now and yours was 2 days ago it will help him definitely.

    • @MasdLab
      @MasdLab  Месяц назад +1

      Haaa really? Getting a Reddit account today! Yeah I’ve done this for a project many years ago for an animated infographic. It’s helps a lot!

    • @exogendesign4582
      @exogendesign4582 Месяц назад

      @@MasdLab you should, it will definitely helps us noobs in
      r/aftereffects.

  • @systemofapawn
    @systemofapawn Месяц назад +1

    very nice

    • @MasdLab
      @MasdLab  Месяц назад +1

      Thank you! Ps. Still love your username haha

  • @bharat5194
    @bharat5194 Месяц назад +2

    Fantastic stuff 😎

    • @MasdLab
      @MasdLab  Месяц назад

      Thank you so much my friend! ☀️

  • @iamslymn
    @iamslymn Месяц назад +1

    Thank you!

    • @MasdLab
      @MasdLab  Месяц назад +1

      you are more than welcome! Thank you for watching!

    • @boomblastics
      @boomblastics Месяц назад +1

      Love from Bihar India♥️♥️

    • @MasdLab
      @MasdLab  Месяц назад +1

      @@boomblastics Thank you! I felt it! Much love to you and yours!

  • @pietrobasei1564
    @pietrobasei1564 Месяц назад +1

    Great vid! Is it possible to scale the objects on only one axis whit this method?

    • @MasdLab
      @MasdLab  Месяц назад +1

      heya! yea you will need to adjust the expression a bit but it's a easy fix.
      If you just want to scale on the X-axis, you can try this:
      primaryLayer = thisComp.layer("Primary Layer Name"); // Replace with your primary layer name
      primaryScale = primaryLayer.transform.scale[0];
      minScale = 17.15;
      maxScale = 100;
      secondaryScaleX = linear(primaryScale, minScale, maxScale, maxScale, minScale);
      [secondaryScaleX, 100]; // Keeps Y-axis steady
      Or, if you’re looking to scale on the Y-axis instead, use this:
      primaryLayer = thisComp.layer("Primary Layer Name"); // Replace with your primary layer name
      primaryScale = primaryLayer.transform.scale[1];
      minScale = 17.15;
      maxScale = 100;
      secondaryScaleY = linear(primaryScale, minScale, maxScale, maxScale, minScale);
      [100, secondaryScaleY]; // Keeps X-axis steady
      In both cases, the 100 just locks the other axis, so it stays put, while the scaling only affects one side. Tweak that if you need a different static scale, and you’re good to go!
      I hope this helps!

    • @pietrobasei1564
      @pietrobasei1564 Месяц назад

      @MasdLab 🙏🏻 so helpful

  • @willeklof
    @willeklof Месяц назад +2

    Simply doesn't work.

    • @MasdLab
      @MasdLab  Месяц назад

      That’s odd :( what’s happening? It should work like in the video. Otherwise the video example wouldn’t work too :(