aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/VectorRenderModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-9/+11
| | | | (this took a while to run).
* Comment out an unused 'str' and add a WriteLine to useCharles Krinke2008-03-211-1/+4
| | | | | an "Exception e" with e.ToString() to eliminate 2 warnings.
* Formatting cleanup.Jeff Ames2008-03-181-36/+37
|
* Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames2008-03-181-11/+31
|
* some hackery with the VectorRenderModule to let you pass in a canvasSean Dague2008-03-131-2/+13
| | | | | | | size. Helps make the fonts crisp when using vector renderer as a text board.
* 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.