home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def Preset_Sculpture():
- return {
- 'Ambience': 50,
- 'Angle': 315,
- 'Color': (201,157,66),
- 'Depth': 20,
- 'Elevation': 35,
- 'Intensity': 25,
- 'PatternName': r'Gold',
- 'Shininess': 100,
- 'Size': 100,
- 'Smoothness': 10
- }
-
- def Do(Environment):
- App.Do( Environment, 'Sculpture', Preset_Sculpture())
-
-