LsClearWindlightScene
From OpenSimulator
Jump to navigationJump to search
lsClearWindlightScene
Function
void lsClearWindlightScene();
Remove Windlight settings from a region.
Caveats
LightShare must be enabled in the Simulator.
This script function is restricted to the region owner only.
Examples
//
// lsClearWindlightScene Script Exemple
// Author: djphil
//
default
{
// Event handler triggered when the script is initialized
state_entry()
{
// Send a message to public channel informing users to touch to see usage
llSay(PUBLIC_CHANNEL, "Touch to see lsClearWindlightScene usage.");
}
// Event handler triggered when the object is touched
touch_start(integer number)
{
// Call lsClearWindlightScene function to remove Windlight settings
lsClearWindlightScene();
// Send a message to public channel confirming the Windlight scene is cleared
llSay(PUBLIC_CHANNEL, "The Windlight Scene is now cleared ...");
}
}