Difference between revisions of "LlDeleteCharacter"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with "{{Pathfinding alpha}} {{LSL_Function| func=llDeleteCharacter| func_desc=Convert the current linkset back to a standard object, removing all pathfinding properties.| caveats=None|…")
(No difference)

Revision as of 12:25, 14 February 2012

Summary

Function: llDeleteCharacter( );

Convert the current linkset 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>

See Also

Functions

Deep Notes

Search JIRA for related Issues

Signature

function void llDeleteCharacter();