/AuroraDocs/AAFunctions/aaSetCloudDensity.lsl
https://bitbucket.org/VirtualReality/software-testing · Unknown · 13 lines · 13 code · 0 blank · 0 comment · 0 complexity · 038978ab0372ff67a818ef4f843c09a6 MD5 · raw file
- default
- {
- state_entry()
- {
- //Set the cloud density to 1
- aaSetCloudDensity(1.0);
- }
- touch_start(integer number)
- {
- //Set the cloud density to half
- aaSetCloudDensity(0.5);
- }
- }