Skip navigation
stoob1969
Currently Being Moderated

Moving background to camera but only at 25%

Jun 12, 2009 3:58 AM

I want the background to move with the camera but at a reduce positioning, say 25% of the normal movements. Can this be done?

 

Thanks for an answers, using AE 7

 
Replies
  • Currently Being Moderated
    Jun 12, 2009 6:41 AM   in reply to stoob1969

     

    Probably something like this:

     

    thisComp.activeCamera.transform.position;
    value + (P - P.valueAtTime(0))*0.25

     

    Dan

     
    |
    Mark as:
  • Currently Being Moderated
    Jun 12, 2009 10:14 AM   in reply to stoob1969

    Oops. Sorry, I didn't copy and paste the whole thing. This should be better:

     

    P = thisComp.activeCamera.transform.position;
    value + (P - P.valueAtTime(0))*0.25

     

     

    Dan

     
    |
    Mark as:
  • Currently Being Moderated
    Jun 13, 2009 7:32 AM   in reply to stoob1969

    Ah, if the camera has a parent, this should work better:

     

    C = thisComp.activeCamera;
    p0 = C.toWorld([0,0,0],0);
    p1 = C.toWorld([0,0,0],time)
    value + (p1 - p0)*0.25

    Note that you won't see any movement until you animate the camera position over time.

     

    Dan

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points