home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': ''
- }
-
- def Preset_Tiles():
- return {
- 'Ambience': 31,
- 'Angle': 315,
- 'BorderSize': 4,
- 'Color': (255,255,255),
- 'Depth': 4,
- 'Elevation': 68,
- 'Intensity': 50,
- 'Shininess': 40,
- 'Smoothness': 17,
- 'TileAngularity': 0,
- 'TileShape': App.Constants.TileShape.Hexagon,
- 'TileSize': 10
- }
-
- def Do(Environment):
- App.Do(Environment, 'Tiles', Preset_Tiles())
-
-