home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Preset_Lights_RGB_Light.PspS < prev    next >
Encoding:
Text File  |  2003-04-22  |  844 b   |  25 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'RGB Light Lights preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_Lights():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Lights': ((1, (255, 9, 9), (0, -60, 8, 100, 28, 45, 60, 180)), (1, (11, 5, 255), (-60, 40, 8, 100, 28, 45, 60, 45)), (1, (23, 255, 5), (60, 40, 8, 100, 28, 45, 60, 315)), (0, (200, 200, 200), (-70, 70, 10, 500, 28, 45, 40, 65)), (0, (200, 200, 70), (0, 0, 10, 500, 28, 45, 0, 200))),
  19.         'SelButton': 0,
  20.         'Darkness': 85,
  21.         }
  22.  
  23. def Do(Environment):
  24.     App.Do(Environment, 'Lights', Preset_Lights())
  25.