home *** CD-ROM | disk | FTP | other *** search
-
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'Jasc Software Inc.',
- 'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
- 'Description': 'Factory default preset for BrushStrokes effect',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_BrushStrokes():
- return {
- 'Opacity': 50,
- 'Color': (80, 80, 80),
- 'Length': 10,
- 'Angle': 102,
- 'Density': 25,
- 'Bristles': 160,
- 'Softness': 20,
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0,
- 'RandomSeed': None
- },
- 'Width': 5
- }
-
- def Do(Environment):
- App.Do( Environment, 'BrushStrokes', Preset_BrushStrokes())
-