Difference between revisions of "LlDeleteCharacter"

From Second Life Wiki
Jump to navigation Jump to search
m
m (lol)
Line 3: Line 3:
|func=llDeleteCharacter
|func=llDeleteCharacter
|func_desc=Convert the object back to a standard object, removing all pathfinding properties.
|func_desc=Convert the object back to a standard object, removing all pathfinding properties.
|caveats=None
|caveats=
|examples=
|examples=
<lsl>
<lsl>

Revision as of 10:12, 27 June 2012

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();