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

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'Custom 3 RoughLeather preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_RoughLeather():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Luminance': 0,
  19.         'Angle': 323,
  20.         'LightColor': (130, 130, 130),
  21.         'Blur': 15,
  22.         'LeatherColor': (0, 0, 0),
  23.         'Sharpness': 33,
  24.         'Contrast': 6,
  25.         }
  26.  
  27. def Do(Environment):
  28.     App.Do(Environment, 'RoughLeather', Preset_RoughLeather())
  29.