Difference between revisions of "LlDeleteCharacter"

From Second Life Wiki
Jump to navigation Jump to search
m (Change category from Pathfinding to LSL Pathfinding)
m
Line 5: Line 5:
|caveats=
|caveats=
|examples=
|examples=
<lsl>
<source lang="lsl2">
create_character()
create_character()
{
{
Line 34: Line 34:
     }
     }
}
}
</lsl>
</source>
|also_functions=
|also_functions=
* [[llCreateCharacter]]
* [[llCreateCharacter]]

Revision as of 00:42, 22 January 2015

Summary

Function: llDeleteCharacter( );

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

Examples

create_character()
{
//  Clear any previous character behaviors
    llDeleteCharacter();

//  default speed is 20
    llCreateCharacter([CHARACTER_DESIRED_SPEED, 10.0]);
    llWanderWithin(llGetPos(), <10.0, 10.0, 2.0>, []);
}

default
{
    on_rez(integer start_param)
    {
        llResetScript();
    }

    state_entry()
    {
        create_character();
    }
 
    touch_start(integer num_detected)
    {
    //  Clear any previous character behaviors
        llDeleteCharacter();
    }
}

Deep Notes

History

Date of Release 31/07/2012

Search JIRA for related Issues

Signature

function void llDeleteCharacter();