LlDeleteCharacter - Second Life Wiki

LlDeleteCharacter

From Second Life Wiki

Second Life Wiki > LSL Portal > Pathfinding > LlDeleteCharacter
Jump to: navigation, search

Contents

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

Search JIRA for related Issues

This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.