OsDrawRectangle
De DigiWiki.
Version du 22 septembre 2012 à 05:24 par Djphil (discuter | contributions)
// ---------------------------------------------------------------- // Example / Sample Script to show function use. // // Script Title: osDrawRectangle.lsl // Script Author: // Threat Level: None // Script Source: REFERENCE http://opensimulator.org/wiki/osDrawRectangle // // Notes: See Script Source reference for more detailed information // This sample is full opensource and available to use as you see fit and desire. // Threat Levels only apply to OSSL & AA Functions // See http://opensimulator.org/wiki/Threat_level //================================================================ // Inworld Script Line: osDrawRectangle( string drawList, integer width, integer height); // // Example of osDrawRectangle // integer Touched = FALSE; default { state_entry() { llSay(0,"Touch to see osDrawRectangle create a Rectangle Image on the prim"); } touch_end(integer num) { if(Touched) { Touched = FALSE; llSetTexture(TEXTURE_PLYWOOD, ALL_SIDES); } else { Touched = TRUE; string DrawList = ""; DrawList = osSetPenSize(DrawList, 3); // Set the pen width to 3 pixels DrawList = osSetPenColor(DrawList, "Green"); // Set the pen color to green DrawList = osMovePen(DrawList, 28, 78); // Upper left corner at <28,78> DrawList = osDrawRectangle(DrawList, 200, 100); // 200 pixels by 100 pixels // Draw the rectangle osSetDynamicTextureData("", "vector", DrawList, "width:256,height:256", 0); llSay(0,"Touch again to revert to Default Plywood texture"); } } }


