Beispiel #1
0
 /// <summary>
 /// Halo2 Lightmap exporter class
 /// </summary>
 /// <param name="lightmap_info">An object implementing IHalo2LightmapInterface to define what meshes are to be included in the collada file</param>
 /// <param name="tag_index">The tag index that contains the tag being exported</param>
 /// <param name="tag_manager">The tag manager of the tag being exported</param>
 public ColladaBSPExporter(ColladaExportArgs arguments, IHalo2BSPInterface info, Managers.TagIndexBase tag_index, Managers.TagManager tag_manager)
     : base(arguments, info, tag_index, tag_manager)
 {
     bspInfo = info;
 }
Beispiel #2
0
		/// <summary>
		/// Halo2 Lightmap exporter class
		/// </summary>
		/// <param name="lightmap_info">An object implementing IHalo2LightmapInterface to define what meshes are to be included in the collada file</param>
		/// <param name="tag_index">The tag index that contains the tag being exported</param>
		/// <param name="tag_manager">The tag manager of the tag being exported</param>
		public ColladaBSPExporter(ColladaExportArgs arguments, IHalo2BSPInterface info, Managers.TagIndexBase tag_index, Managers.TagManager tag_manager)
			: base(arguments, info, tag_index, tag_manager)
		{
			bspInfo = info;
		}
Beispiel #3
0
 /// <summary>
 /// Halo2 Lightmap exporter class
 /// </summary>
 /// <param name="lightmap_info">An object implementing IHalo2LightmapInterface to define what meshes are to be included in the collada file</param>
 /// <param name="tag_index">The tag index that contains the tag being exported</param>
 /// <param name="tag_manager">The tag manager of the tag being exported</param>
 public ColladaBSPExporter(IColladaSettings settings, IHalo2BSPInterface info, Managers.TagIndexBase tag_index, Managers.TagManager tag_manager)
     : base(settings, info, tag_index, tag_manager)
 {
     bspInfo = info;
 }