ALL SIDES
Jump to navigation
Jump to search
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer ALL_SIDES = -1;The integer constant ALL_SIDES has the value -1
Selects all sides of an object in an applicable function.
Caveats
Related Articles
Functions
Examples
<source lang="lsl2"> default {
state_entry() { string texture = llGetInventoryName(INVENTORY_TEXTURE, 0); llSetTexture(texture, ALL_SIDES); }
}</source>