innula

Untitled

Feb 11th, 2013
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. integer phantomChild;
  2. default
  3. {
  4.     state_entry()
  5.     {
  6.        
  7.     }
  8.  
  9.     touch_start(integer total_number)
  10.     {
  11.        phantomChild=!phantomChild;
  12.        if(phantomChild){
  13.            llSetLinkPrimitiveParamsFast(2,[PRIM_PHYSICS_SHAPE_TYPE, PRIM_PHYSICS_SHAPE_NONE]);
  14.         }
  15.         else{
  16.             llSetLinkPrimitiveParamsFast(2,[PRIM_PHYSICS_SHAPE_TYPE, PRIM_PHYSICS_SHAPE_CONVEX]);  
  17.         }
  18.        
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment