How do I have the camera follow the Player as he advances left and right, up or down?
I set a group "Camera" that is active on start for organization, but i don't know what variables to set and control.
Nevermind.. I figured it out
Condition:Every tick -> Action: System-Scroll to object.
timbanon
beautiful, isn't it.
very much :]
theres also a behavior called "Scroll To" you can just add to the object
You can also use lerp for smoother scrolling:
System: Scrollto (lerp(ScrollX, Player.X, dt), lerp(ScrollY, Player.Y, dt))
good knowledge
does any body know how i can control the scroll to speed?
have a look at my capx example
i want to slow down the speed of the arrow as its controlled by the mouse
its to inaccurate at the moment
does any body know how i can control the scroll to speed? have a look at my capx example i want to slow down the speed of the arrow as its controlled by the mouse its to inaccurate at the moment
Here is http://dl.dropbox.com/u/76227787/MouseSmoothScroll.capx
You can change dt number, 0.1 to 1 are slower, so 10 is not so slow, then 30 is really faster.
Develop games in your browser. Powerful, performant & highly capable.
thats a really big help mate...thankyou