Don't click here unless you want to be banned.

LSL Wiki : land_collision_start

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl338.us.archive.org
land_collision_start(vector pos)

This event is raised when the object begins to collide with the ground. pos contains the position (in region coordinates) where the collision occured.

Compare with land_collision and land_collision_end.

Example:
default {
    state_entry() {
        llSetStatus(STATUS_PHYSICS, TRUE); // start falling
    }

    land_collision_start(vector pos) {
        llSay(0, "Hit the ground at " + (string)pos);
    }
}


Events | Collisions
There is no comment on this page. [Display comments/form]