View Single Post
  #20  
Old 10-06-2007, 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
I did this to create my rotating space ship (on Litheria)

PHP Code:
//#CLIENTSIDE
function onCreated()
{
  
showimg(201""this.xthis.y);
  
findimg(201).shape "test.3ds";
  
findimg(201).zoom 0.03;
  
setTimer(0.05);
  
this.chat "wee";
}

function 
onTimeout()
{
  
this.yrot += 0.05;
  
this.zrot += 0.05;
  
findimg(201).eulerrotation = {0,this.yrot,this.zrot};
  
setTimer(0.05);

Reply With Quote