mirror of
				https://github.com/MapMakersAndProgrammers/alternativa3d-archive.git
				synced 2025-10-31 01:06:16 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			489 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			489 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
| package alternativa.engine3d.loaders {
 | ||
| 	import flash.display.BitmapData;
 | ||
| 	import flash.geom.Point;
 | ||
| 	
 | ||
| 	/**
 | ||
| 	 * @private
 | ||
| 	 * Класс содержит обобщённую информацию о материале.
 | ||
| 	 */
 | ||
| 	internal class MaterialInfo {
 | ||
| 		public var color:uint;
 | ||
| 		public var alpha:Number;
 | ||
| 
 | ||
| 		public var textureFileName:String;
 | ||
| 		public var bitmapData:BitmapData;
 | ||
| 		public var repeat:Boolean;
 | ||
| 
 | ||
| 		public var mapOffset:Point;
 | ||
| 		public var mapSize:Point;
 | ||
| 	}
 | ||
| } | 
