OsSetDynamicTextureURLBlend
From OpenSimulator
(Difference between revisions)
												
			m (Remove ${OSSL|osslParcelOG})  | 
			|||
| Line 6: | Line 6: | ||
|ossl_example=<source lang = "lsl">  | |ossl_example=<source lang = "lsl">  | ||
// ----------------------------------------------------------------  | // ----------------------------------------------------------------  | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
// Example of osSetDynamicTextureURLBlend  | // Example of osSetDynamicTextureURLBlend  | ||
//  | //  | ||
| Line 26: | Line 11: | ||
//    width - width of the dynamic texture in pixels (example: width:256)    | //    width - width of the dynamic texture in pixels (example: width:256)    | ||
//    height - height of the dynamic texture in pixels (example: height:256)    | //    height - height of the dynamic texture in pixels (example: height:256)    | ||
| − | //    alpha - alpha (transparency) component of the dynamic texture. Values are from 0-clear to 255-solid  | + | //    alpha - alpha (transparency) component of the dynamic texture. Values are from 0-clear to 255-solid.  | 
//    bgcolour - specifies the background color of the texture (example: bgcolour:Red)    | //    bgcolour - specifies the background color of the texture (example: bgcolour:Red)    | ||
//    setalpha    | //    setalpha    | ||
Revision as of 23:39, 20 October 2019
string osSetDynamicTextureURLBlend(string dynamicID, string contentType, string url, string extraParams, integer timer, integer alpha)
 
 | |
| No descriptions provided | |
| Threat Level | VeryHigh | 
| Permissions | ESTATE_MANAGER,ESTATE_OWNER | 
| Extra Delay | 0 seconds | 
| Example(s) | |
// ---------------------------------------------------------------- // Example of osSetDynamicTextureURLBlend // // ExtraParams Values: // width - width of the dynamic texture in pixels (example: width:256) // height - height of the dynamic texture in pixels (example: height:256) // alpha - alpha (transparency) component of the dynamic texture. Values are from 0-clear to 255-solid. // bgcolour - specifies the background color of the texture (example: bgcolour:Red) // setalpha // integer value - any integer value is treated like specifing alpha component // default { state_entry() { llSay(0,"Touch to see osSetDynamicTextureURLBlend used to render Web Based Image/Texture on a prim"); } touch_start(integer total_num) { string sDynamicID = ""; // not implemented yet string sContentType = "image"; // vector = text/lines,etc. image = texture only string sURL = "http://www.goes.noaa.gov/FULLDISK/GEVS.JPG"; // URL for WebImage (Earth Shown) string sExtraParams = "width:256,height:256"; // optional parameters in the following format: [param]:[value],[param]:[value] integer iTimer = 0; // timer is not implemented yet, leave @ 0 integer iAlpha = 255; // 0 = 100% Alpha, 255 = 100% Solid // Set the prepared texture info to a string string sTexture = osSetDynamicTextureURLBlend( sDynamicID, sContentType, sURL, sExtraParams, iTimer, iAlpha); if (llStringLength(sTexture)>0) { llSay(0,"URL of Texture = "+sURL); llSetTexture(sTexture, ALL_SIDES); } } }  | |