Dim Sum sits by the water, glad that the temperature has finally gone down, or she would have to jump into the water to cool off.... She would shudder at the thought, except cats are too cool to shudder about anything.
This one has an overlay texture on a HUD. (Many thanks to Angela Marie Henriette for the texture!) It looks like there's no more temporary upload in Firestorm, so I used media-on-a-prim instead (LSL script below), so I won't have to use Dim Sum's lonely 10L. :D
location: Kingdom of Sand
Technical notes
windlight: [TOR] SUNSET - Langnun (modified)If you don't know how to create media-on-a-prim, go to the Contents tab of a prim and create a new script. Replace all the default lines in the script with the following code:
integer iFace = ALL_SIDES; // replace "ALL_SIDES" with the prim's side number
string sURL = "http://wheresdimsum.blogspot.com/"; // replace this URL
default
{
state_entry()
{
integer iStatus = llSetPrimMediaParams( iFace, [
PRIM_MEDIA_CONTROLS, PRIM_MEDIA_CONTROLS_MINI,
PRIM_MEDIA_AUTO_PLAY, TRUE,
PRIM_MEDIA_CURRENT_URL, sURL,
PRIM_MEDIA_HOME_URL, sURL
] );
llOwnerSay( "Status is " + (string) iStatus ); // this line is optional
}
}
No comments:
Post a Comment