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

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'Kris Zaklika',
  6.         'Copyright': 'Copyright (C) 2002-2003, Jasc Software Inc., All Rights Reserved.',
  7.         'Description': 'A sepia framing effect',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_BallsAndBubbles():
  13.     return {
  14.         'Illumination': {
  15.             'MaxAmbience': 55, 
  16.             'MinAmbience': 33, 
  17.             'LightList': [{
  18.                 'BubbleLight': App.Constants.Boolean.false, 
  19.                 'Color': (57,3,3), 
  20.                 'Direction': (-0.024423,0.010196,0.99965), 
  21.                 'HighlightSize': 56
  22.                 }]
  23.             }, 
  24.         'Mode': App.Constants.CountType.Single, 
  25.         'Multiple': {
  26.             
  27.             }, 
  28.         'Single': {
  29.             'MaxPossibleSize': App.Constants.Boolean.true
  30.             }, 
  31.         'Surface': {
  32.             'Material': {
  33.                 'Color': (141,85,4), 
  34.                 'Pattern': None, 
  35.                 'Gradient': None, 
  36.                 'Texture': None
  37.                 }, 
  38.             'BumpMap': {
  39.                 'Active': App.Constants.Boolean.false
  40.                 }, 
  41.             'EnvironmentMap': {
  42.                 'Active': App.Constants.Boolean.false
  43.                 }, 
  44.             'Gloss': 90, 
  45.             'Opacity': 47, 
  46.             'Shininess': 95
  47.             }
  48.         }
  49.  
  50. def Do(Environment):
  51.     App.Do( Environment, 'BallsAndBubbles',         Preset_BallsAndBubbles())
  52.  
  53.