/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

  1. default
  2. {
  3. state_entry()
  4. {
  5. //Set the cloud density to 1
  6. aaSetCloudDensity(1.0);
  7. }
  8. touch_start(integer number)
  9. {
  10. //Set the cloud density to half
  11. aaSetCloudDensity(0.5);
  12. }
  13. }