home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Preset_BallsAndBubbles_Doork < prev    next >
Encoding:
Text File  |  2003-04-22  |  1.9 KB  |  63 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 door knob made from a car wheel',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_BallsAndBubbles():
  13.     return {
  14.         'Illumination': {
  15.             'MaxAmbience': 71, 
  16.             'MinAmbience': 0, 
  17.             'LightList': [{
  18.                 'BubbleLight': App.Constants.Boolean.false, 
  19.                 'Color': (161,139,85), 
  20.                 'Direction': (1,1,-1), 
  21.                 'HighlightSize': 33
  22.                 },{
  23.                 'BubbleLight': App.Constants.Boolean.false, 
  24.                 'Color': (59,45,51), 
  25.                 'Direction': (-0.668053,-0.744114,0), 
  26.                 'HighlightSize': 19
  27.                 }]
  28.             }, 
  29.         'Mode': App.Constants.CountType.Single, 
  30.         'Multiple': {
  31.             
  32.             }, 
  33.         'Single': {
  34.             'MaxPossibleSize': App.Constants.Boolean.true
  35.             }, 
  36.         'Surface': {
  37.             'Material': {
  38.                 'Color': (153,116,91), 
  39.                 'Pattern': None, 
  40.                 'Gradient': None, 
  41.                 'Texture': None
  42.                 }, 
  43.             'BumpMap': {
  44.                 'Active': App.Constants.Boolean.true, 
  45.                 'Depth': 25, 
  46.                 'FileName': 'Wheel', 
  47.                 'Fit': App.Constants.Boolean.true, 
  48.                 'Size': 25, 
  49.                 'Smoothness': 12
  50.                 }, 
  51.             'EnvironmentMap': {
  52.                 'Active': App.Constants.Boolean.false
  53.                 }, 
  54.             'Gloss': 42, 
  55.             'Opacity': 100, 
  56.             'Shininess': 52
  57.             }
  58.         }
  59.  
  60. def Do(Environment):
  61.     App.Do( Environment, 'BallsAndBubbles',         Preset_BallsAndBubbles())
  62.  
  63.