Forum Replies Created

  • Oooh indeed, it works ! Thank you so much!

  • Lucas Piazzini

    January 19, 2021 at 3:59 pm in reply to: Can I parent a text’s font and font size ?

    Hi ! Sorry for the late reply. Unfortunately this doesn’t explain what I am asking, I need to parent a font to another so we can change it to any font we want without having to create an array of any sort.

    Using an array could create a few workarounds but not the direct parenting. Do you have any idea ?

    Sincerely, Lucas 🙂

  • Thank you so much ! Really nothing else to say than THANK, YOU.

  • Lucas Piazzini

    April 14, 2020 at 6:23 pm in reply to: Link position to scale expression ?

    After hours of headaches and with the help of my Data scientist father, I was able to make a much simpler and versatile version that revolves around no other constant than a factor unlike school of motion, it also allows you to control the speed of evolution from minimum scale to maximum scale, aswell as the minimum scale ! Thanks for your help I wouldn’t have improved without your link !

    Factor = 20 //Control the scale variation, smaller factor = smaller minimum size

    var diameter = thisComp.layer("Ball").content("Ellipse 1").content("Ellipse Path 1").size[1];
    var ball_yPos = thisComp.layer("Ball Pos").transform.position[1];
    var ground = thisComp.layer("Ground").transform.position[1];
    var hDepart = diameter*2; //Control the scale speed
    var diff_BallGround = ground - ball_yPos;

    if (diff_BallGround<hDepart){ //Shadow Scaling
    substract = (diff_BallGround/Factor)
    }else{
    substract=hDepart/Factor // Minimum size
    }

    if (substract&lt;0){ //To prevent the shadow from getting larger
    substract = 0
    }

    [100-substract,transform.scale[1]]

  • Lucas Piazzini

    April 14, 2020 at 2:23 pm in reply to: Link position to scale expression ?

    Thank you very much !

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy