View Single Post
  #7  
Old 12-30-2009, 07:27 AM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
Ended up with,

PHP Code:
function onCreated()
{
  
this.amp 0.2;
  
this.period 4;
  
this.initialy 2;
  
setTimer(0.05);
}

function 
onTimeout()
{
  
this.value += 0.05;
  
temp.value = (this.amp*sin((this.value*this.period)+this.initialy));
  
setTimer(0.05);

Created a nice little bob =)

End result is on Litheria above a sign =D
Reply With Quote