Thread: Smooth Camera
View Single Post
  #9  
Old 11-19-2011, 10:51 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Am I doing this right?
PHP Code:
//#CLIENTSIDE
function onCreated() {
  
setTimer(0.05);
}

function 
onTimeout() {
  
this.cx += ((player.x) - this.cx) * .1;
  
this.cy += ((player.y) - this.cy) * .1;
  
setFocus(this.cxthis.cy);
  
setTimer(0.05);

__________________
Reply With Quote