aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/VectorRenderModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Linux Compile error if Color is compared against null. Documentation for ↵Teravus Ovares2008-03-091-3/+8
| | | | System.Drawing.Color says it returns a Color with all Components as 0 if the String passed isn't a known color, so the null check has been commented out
* Added new drawing command "PenColour", with format "PenColour <colourname>;" ↵MW2008-03-081-1/+12
| | | | colour name can be any of the predefined .net System.Drawing.Color names.
* Added Frist basic version on the VectorRenderModule, that allows scripts to ↵MW2008-03-081-0/+308
do some basic drawing onto textures. Currently the method the scripts have to use is most likely not the most user friendly, but this should improve soon. And hope to allow SVG files (either loaded from a web site, or even script created) to be used. I will add a page to the wiki tomorrow, until then http://www.pastebin.ca/934425 is a example c# script that can be used to get a bit of a idea. Also added osSetDynamicTextureDataBlend and osSetDynamicTextureURLBlend that will allow the various textures to be blended together, but currently there are still a few bugs in them. So not ready for use yet.