llDeleteCharacter

From Second Life Wiki
Revision as of 10:12, 27 June 2012 by Strife Onizuka (talk | contribs) (lol)
Jump to navigation Jump to search

Summary

Function: llDeleteCharacter( );

Convert the object back to a standard object, removing all pathfinding properties.

Examples

<lsl> default {

   state_entry()
   {
       llDeleteCharacter(); // Remove any previous pathfinding characteristics
       llCreateCharacter([CHARACTER_DESIRED_SPEED, 10.0]);
       llWanderWithin(llGetPos(), 10.0, []);
   }
   touch_end(integer num_detected)
   {
       llDeleteCharacter(); // Revert back to a normal prim on touch
   }

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function void llDeleteCharacter();