OsSetPrimFloatOnWater
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
| Line 1: | Line 1: | ||
| − | {{osslfunc| | + | {{osslfunc |
| − | threat_level = VeryLow | + | |threat_level=VeryLow |
| − | | | + | |function_syntax=osSetPrimFloatOnWater(integer float) |
| − | function_syntax = | + | |ossl_example=<source lang="lsl"> |
| − | osSetPrimFloatOnWater(integer float) | + | |
| − | + | ||
| − | | | + | |
| − | ossl_example = <source lang="lsl"> | + | |
// | // | ||
//osSetPrimFloatOnWater() example, by Tom Earth. | //osSetPrimFloatOnWater() example, by Tom Earth. | ||
| Line 18: | Line 14: | ||
} | } | ||
</source> | </source> | ||
| − | | | + | |description= |
| − | + | ||
| | | | ||
}} | }} | ||
Revision as of 20:39, 1 July 2011
osSetPrimFloatOnWater(integer float)
| |
| No descriptions provided | |
| Threat Level | VeryLow |
| Permissions | No permissions specified |
| Extra Delay | No function delay specified |
| Example(s) | |
// //osSetPrimFloatOnWater() example, by Tom Earth. // default { state_entry() { osSetPrimFloatOnWater(TRUE); } } | |