home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Preset_BallsAndBubbles_Green < prev    next >
Encoding:
Text File  |  2003-04-22  |  2.4 KB  |  73 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 sea of transparent green bubbles',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_BallsAndBubbles():
  13.     return {
  14.         'Illumination': {
  15.             'MaxAmbience': 61, 
  16.             'MinAmbience': 59, 
  17.             'LightList': [{
  18.                 'BubbleLight': App.Constants.Boolean.false, 
  19.                 'Color': (109,163,139), 
  20.                 'Direction': (0.631606,0.540523,0.994301), 
  21.                 'HighlightSize': 35
  22.                 },{
  23.                 'BubbleLight': App.Constants.Boolean.true, 
  24.                 'Color': (236,118,161), 
  25.                 'Direction': (0.632733,0.344679,0.438245), 
  26.                 'HighlightSize': 12
  27.                 },{
  28.                 'BubbleLight': App.Constants.Boolean.true, 
  29.                 'Color': (149,126,54), 
  30.                 'Direction': (0.124202,0.930325,0.92504), 
  31.                 'HighlightSize': 30
  32.                 },{
  33.                 'BubbleLight': App.Constants.Boolean.false, 
  34.                 'Color': (36,81,46), 
  35.                 'Direction': (-0.508642,-0.788908,0.841089), 
  36.                 'HighlightSize': 43
  37.                 }]
  38.             }, 
  39.         'Mode': App.Constants.CountType.Multiple, 
  40.         'Multiple': {
  41.             'AverageSize': 56, 
  42.             'Coverage': 84, 
  43.             'CreateMethod': App.Constants.BubbleCreateMethod.Overlapping, 
  44.             'SizeVariation': 95
  45.             }, 
  46.         'RandomSeed': 11510, 
  47.         'RandomizePlacement': App.Constants.Boolean.false, 
  48.         'Single': {
  49.             'MaxPossibleSize': App.Constants.Boolean.true
  50.             }, 
  51.         'Surface': {
  52.             'Material': {
  53.                 'Color': (69,170,121), 
  54.                 'Pattern': None, 
  55.                 'Gradient': None, 
  56.                 'Texture': None
  57.                 }, 
  58.             'BumpMap': {
  59.                 'Active': App.Constants.Boolean.false
  60.                 }, 
  61.             'EnvironmentMap': {
  62.                 'Active': App.Constants.Boolean.false
  63.                 }, 
  64.             'Gloss': 15, 
  65.             'Opacity': 12, 
  66.             'Shininess': 38
  67.             }
  68.         }
  69.  
  70. def Do(Environment):
  71.     App.Do( Environment, 'BallsAndBubbles',         Preset_BallsAndBubbles())
  72.  
  73.