Forum Replies Created

  • Caleb Minear

    September 5, 2013 at 9:58 pm in reply to: simple scale expression

    Ok. Changed what I was doing but thanks for the help!

  • Caleb Minear

    September 4, 2013 at 8:23 pm in reply to: simple scale expression

    Hey! I found this and the first expression,
    rampStart = 0;
    rampEnd = 30;
    startVal = [100,100];
    maxVal = [105,105];

    rampMid = rampStart + (rampEnd – rampStart)/2;
    if (time < rampStart || time > rampEnd){
    value
    }else if (time < rampMid){
    ease(time,rampStart,rampMid,startVal, maxVal)
    }else{
    ease(time,rampMid,rampEnd,maxVal,startVal)
    }

    Works for what I need, i just need to make it happen faster. How do I do this?

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