papervision3d.as.svn-base

来自「ActionScript写的3D图片展示功能」· SVN-BASE 代码 · 共 64 行

SVN-BASE
64
字号
package org.papervision3d
{

	/**
	* The Papervision3D class contains global properties and settings.
	*/
	public class Papervision3D
	{
		// ___________________________________________________________________ SETTINGS
		
		
		
		/**
		* Indicates if the angles are expressed in degrees (true) or radians (false). The default value is true, degrees.
		*/
		static public var useDEGREES  :Boolean = true;
	
		/**
		* Indicates if the scales are expressed in percent (true) or from zero to one (false). The default value is false, i.e. units.
		*/
		static public var usePERCENT  :Boolean = false;
	
	
		// ___________________________________________________________________ STATIC
	
		/**
		* Enables engine name to be retrieved at runtime or when reviewing a decompiled swf.
		*/
		static public var NAME     :String = 'Papervision3D';
	
		/**
		* Enables version to be retrieved at runtime or when reviewing a decompiled swf.
		*/
		static public var VERSION  :String = 'Public Alpha 2.0 - Great White';
	
		/**
		* Enables version date to be retrieved at runtime or when reviewing a decompiled swf.
		*/
		static public var DATE     :String = '24.03.08';
	
		/**
		* Enables copyright information to be retrieved at runtime or when reviewing a decompiled swf.
		*/
		static public var AUTHOR   :String = '(c) 2006-2007 Copyright by Carlos Ulloa - | John Grden | Ralph Hauwert | Tim Knip | Andy Zupko';
	
		/**
		* Determines whether debug printout is enabled. It also prints version information at startup.
		*/
		static public var VERBOSE  :Boolean = true;
		
		// ___________________________________________________________________ LOG
		
		/**
		* Sends debug information to the Output panel.
		*
		* @param	message		A String value to send to Output.
		*/
		static public function log( message :String ):void
		{
			if( Papervision3D.VERBOSE )
				trace( message );
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?