Advertisement
BlueWall

Simple Door Slide

Jul 22nd, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. // Simple door slider
  3. // BlueWall Information Technologies, LLC (c) 2012
  4. // Licensed under the Apache License, Version 2.0
  5. // http://www.apache.org/licenses/LICENSE-2.0.html
  6. // Door slides along the X axis
  7.  
  8. default
  9. {
  10.     touch_start(integer _det)
  11.     {
  12.         vector sc = llGetScale();
  13.         vector cp = llGetLocalPos();
  14.         llSetPos(cp + (sc.x) * llRot2Fwd(llGetLocalRot()));
  15.         llSleep(4);
  16.         llSetPos(cp);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement