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

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_Texture():
  13.     return {
  14.         'Ambience': 0, 
  15.         'Angle': 204, 
  16.         'Color': (255,255,255), 
  17.         'Depth': 50, 
  18.         'Elevation': 31, 
  19.         'Intensity': 50, 
  20.         'Shininess': 0, 
  21.         'Size': 25, 
  22.         'Smoothness': 20, 
  23.         'TextureName': 'Panel'
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do( Environment, 'Texture',         Preset_Texture())
  28.  
  29.