| /trunk/as3/trunk/src/org/papervision3d/Papervision3D.as r815 | /trunk/as3/trunk/src/org/papervision3d/Papervision3D.as r894 | ||
| 1 | package org.papervision3d | 1 | package org.papervision3d |
|---|---|---|---|
| 2 | { | 2 | { |
| 3 | import org.papervision3d.core.log.PaperLogger; | 3 | import org.papervision3d.core.log.PaperLogger; |
| 4 | 4 | ||
| 5 | 5 | ||
| 6 | /** | 6 | /** |
| 7 | * The Papervision3D class contains global properties and settings. | 7 | * The Papervision3D class contains global properties and settings. |
| 8 | */ | 8 | */ |
| 9 | public class Papervision3D | 9 | public class Papervision3D |
| 10 | { | 10 | { |
| 11 | // ___________________________________________________________________ SETTINGS | 11 | // ___________________________________________________________________ SETTINGS |
| 12 | 12 | ||
| 13 | 13 | ||
| 14 | 14 | ||
| 15 | /** | 15 | /** |
| 16 | * Indicates if the angles are expressed in degrees (true) or radians (false). The default value is true, degrees. | 16 | * Indicates if the angles are expressed in degrees (true) or radians (false). The default value is true, degrees. |
| 17 | */ | 17 | */ |
| 18 | public static var useDEGREES :Boolean = true; | 18 | public static var useDEGREES :Boolean = true; |
| 19 | 19 | ||
| 20 | /** | 20 | /** |
| 21 | * Indicates if the scales are expressed in percent (true) or from zero to one (false). The default value is false, i.e. units. | 21 | * Indicates if the scales are expressed in percent (true) or from zero to one (false). The default value is false, i.e. units. |
| 22 | */ | 22 | */ |
| 23 | public static var usePERCENT :Boolean = false; | 23 | public static var usePERCENT :Boolean = false; |
| 24 | 24 | ||
| 25 | /** | 25 | /** |
| 26 | * | 26 | * |
| 27 | */ | 27 | */ |
| 28 | public static var useRIGHTHANDED :Boolean = false; | 28 | public static var useRIGHTHANDED :Boolean = false; |
| 29 | 29 | ||
| 30 | // ___________________________________________________________________ STATIC | 30 | // ___________________________________________________________________ STATIC |
| 31 | 31 | ||
| 32 | /** | 32 | /** |
| 33 | * Enables engine name to be retrieved at runtime or when reviewing a decompiled swf. | 33 | * Enables engine name to be retrieved at runtime or when reviewing a decompiled swf. |
| 34 | */ | 34 | */ |
| 35 | public static var NAME :String = 'Papervision3D'; | 35 | public static var NAME :String = 'Papervision3D'; |
| 36 | 36 | ||
| 37 | /** | 37 | /** |
| 38 | * Enables version to be retrieved at runtime or when reviewing a decompiled swf. | 38 | * Enables version to be retrieved at runtime or when reviewing a decompiled swf. |
| 39 | */ | 39 | */ |
| 40 | public static var VERSION :String = 'Public Beta 2.0 - Great White'; | 40 | public static var VERSION :String = '2.0.0'; |
| 41 | 41 | ||
| 42 | /** | 42 | /** |
| 43 | * Enables version date to be retrieved at runtime or when reviewing a decompiled swf. | 43 | * Enables version date to be retrieved at runtime or when reviewing a decompiled swf. |
| 44 | */ | 44 | */ |
| 45 | public static var DATE :String = 'December 3rd, 2008'; | 45 | public static var DATE :String = 'March 12th, 2009'; |
| 46 | 46 | ||
| 47 | /** | 47 | /** |
| 48 | * Enables copyright information to be retrieved at runtime or when reviewing a decompiled swf. | 48 | * Enables copyright information to be retrieved at runtime or when reviewing a decompiled swf. |
| 49 | */ | 49 | */ |
| 50 | public static var AUTHOR :String = '(c) 2006-2008 Copyright by Carlos Ulloa | John Grden | Ralph Hauwert | Tim Knip | Andy Zupko'; | 50 | public static var AUTHOR :String = '(c) 2006-2008 Copyright by Carlos Ulloa | John Grden | Ralph Hauwert | Tim Knip | Andy Zupko'; |
| 51 | 51 | ||
| 52 | /** | 52 | /** |
| 53 | * This is the main Logger Controller. | 53 | * This is the main Logger Controller. |
| 54 | */ | 54 | */ |
| 55 | public static var PAPERLOGGER : PaperLogger = PaperLogger.getInstance(); | 55 | public static var PAPERLOGGER : PaperLogger = PaperLogger.getInstance(); |
| 56 | 56 | ||
| 57 | 57 | ||
| 58 | } | 58 | } |
| 59 | } | 59 | } |