OSSL Implemented
From OpenSimulator
(Difference between revisions)
| Line 30: | Line 30: | ||
| System.Collections.Hashtable osParseJSON(string JSON); | | System.Collections.Hashtable osParseJSON(string JSON); | ||
| returns a hashtable containing the structured JSON contents (c# only) | | returns a hashtable containing the structured JSON contents (c# only) | ||
| − | | | + | | [[osParseJSON_example1|example 1]] |
|- | |- | ||
|} | |} | ||
[[Category:Users]] | [[Category:Users]] | ||
[[Category:Development]] | [[Category:Development]] | ||
Revision as of 16:02, 12 September 2008
| Function | Explanation | Examples |
|---|---|---|
| string osSetDynamicTextureURL(string dynamicID, string contentType, string url, string extraParams,int timer); | Loads a webtexture on a prim | example 1 |
| double osTerrainGetHeight(int x, int y); | Gets height of terrain | |
| int osTerrainSetHeight(int x, int y); | Sets height of terrain | |
| int osRegionRestart(double seconds); | Restarts the region | |
| void osRegionNotice(string msg); | Sends a notice to the region | |
| System.Collections.Hashtable osParseJSON(string JSON); | returns a hashtable containing the structured JSON contents (c# only) | example 1 |