Gamebryo LightSpeed 3D游戏引擎简介

一、Gamebryo的基本构成及其工作流程
  Gamebryo是一款便捷且易上手的开放式跨平台游戏开发引擎,他整合了多家当今的成熟技术。图01说明了Gamebryo的基本构成和技术特点。我们随后对其中的主要技术特点做简单的介绍。


Gamebryo的基本构成和技术特点
  那么,Gamebryo中的技术是如何在开发游戏中发挥作用的呢?图02演示了使用Gamebryo的工作流程。

Gamebryo的工作流程
  从图中可看出,Gamebryo为当今主要的DCC工具(MAX、Maya、XSI),它都提供了游戏所需资源的导出插件。这些导出插件的用户界面简单、方便且易使用。美术人员可轻而易举地设置导出环境。从而导出游戏所需的数据:
• NIF文件包含与几何模型有关的数据;
• KF文件包含动画数据;
• KFM文件包含定义一个角色所需的NIF和KF以及动画序列间的默认转换方式。

  在上图中,我们还看到Gamebryo所提供的三个主要工具:
• 资源观察器(AssetViewer)
  这个工具可直接从DCC工具中启动。美术人员可以在导出数据前用它对DCC中的导出物件、人物设置、场景效果等进行观察以便在导出前进行修改。当然也可用来对已经导出的NIF进行观察。

• 动画工具(Animation Tool)
  此工具可以设置导出的动画序列之间的转换,建立多层动画组合。它所产生KFM文件定义了一个完整的角色。

• 场景编辑器(Scene Designer)
  顾名思义此工具是美术和策划用来创建游戏场景的。2.5版增加的地形编辑功能使得场景编辑器更上一层楼。从DCC工具中导出的物件、人物可以通过此编辑器加到场景中。也可方便地设置场景中的灯光、相机等。使用者也可以通过写插件的方式拓展编辑器的功能。场景编辑器产生的GSA文件是XML格式,可被直接加载到游戏中。

  上述三个主要工具的使用在Gamebryo文档中都有详细的描述,参考网站: www.gamebryo101.com 可以通过看录像的方式了解如何使用Gamebryo DCC插件以及如何使用Gamebryo所带的三个主要工具。
二、Gamebryo的主要技术特点
  前面讲到了在使用Gamebryo工作流程中,我们有了游戏中所需的资源。现在该是谈谈Gamebryo技术特点的时候了。正是这些优秀的技术才使得这些资源高效高质量地展现在游戏玩家的面前。那么,Gamebryo的主要技术包括哪些呢?笔者在下文中做简单介绍。
场景图结构(Scene Graph)
  Gamebryo的场景图是一张从场景的根节点起单向非循环的层级结构图表。这张图代表了听得见摸得着的三维世界,是Gamebryo的场景数据库的基础。图03是一张代表从3DS MAX中导出的直升机的场景图。


从3DS MAX中导出的直升机的场景图
  图中右边即为代表直升机的场景图。“SceneNode”为此场景图的根节点。在这种结构下,场景可以有效地以深度优先的方式计算所有物体在世界坐标下的转换矩阵以及包围球(Bounding Sphere)。场景图中的所有节点的类(class)都继承于NiAVObject。
渲染系统(Frame Rendering)


【图04:Gamebryo渲染系统的架构】
• Render Frame(NiRenderFrame)
这是Gamebryo渲染系统中的最上层界面。它代表一个完整的渲染过程。从图中可知,这一过程是由一系列的Render Step来完成的。

• Render Step (NiRenderStep)
Render Step是一个独立的渲染过程。它既可完成主场景的渲染,又可完成一个特效的渲染过程(比如HDR,DOF等)。一个独立的渲染操作过程可能由一个或几个Render Click来完成。

• Render Click (NiRenderClick)
Render Click是一个针对单一渲染目标(Render Target Group)的独立的渲染操作。

• Render View (NiRenderView)
Render View直接对参与渲染的物体进行处理(如剪切、Alpha排序等)。一个Render View可以参与不同Render Click的渲染操作。

  这一架构使得Gamebryo渲染系统的建立与管理更为方便灵活。使用者可以根据渲染的需要来安排Render Step、Render Click和Render View的顺序。同时,NiRenderFrame、NiRenderStep、NiRenderClick都可以靠设置Callback来完成渲染前以及渲染后使用者需要做的事情。
材质系统(Material/Shader/Texture)
  Gamebryo的材质系统是一种机制。这种机制有效地为基于参与渲染的几何模型状态的着色器(Shader)提供服务。在这样的机制下,美术人员可在DCC工具中轻松地设置材质即可。而Gamebryo的材质系统会产生所需的Shader,并储存在缓冲存储器中。Gamebryo有自己的Shader文件格式(即NSF格式),同时也支持其它格式(如FX)。在Gamebryo中,对于在高端机器上运行的游戏,一般会采用标准材质(Standard Material)。而对低端机器来讲,会用到固定管线(fix-pipeline)。
多线程管理系统(Floodgate)
  Floodgate系统是一个跨平台的多线程管理系统(也可说是一个数据流处理器管理系统)。在Gamebryo中,几何模型的变形、粒子系统的模拟计算、人物模型的蒙皮计算等都由Floodgate系统来完成。图05显示Floodgate在系统中的工作流程。其中一片云的部分就是Floodgate系统。主线程把任务交给Floodgate系统,它完成之后再返回主线程。
Floodgate在系统中的工作流程
  有了Floodgate系统,Gamebryo的用户在处理与多线程有关的程序时就不必再写底层代码了。只要建立所要完成的任务(Task),并把它交给Floodgate系统就可以了。我们在这里仅仅提到了这个系统。今后有机会再详细介绍。
几何模型系统(NiMesh)
  新的几何系统(NiMesh)是由数据流组成的。上面讲到几何模型的计算是由NiMeshModifier通过Floodgate系统来完成的。图06显示了几何系统与Floodgate系统之间的关系。NiMeshModifier会把任务交给Floodgate系统,并等待它完成任务返回。对这方面的编程方法感兴趣的朋友可以参照Gamebryo所带的例子MeshCreation。

几何系统与Floodgate系统之间的关系
  与模型系统的处理方式一样,Gamebryo所带的强大、灵活且可拓展的粒子特效的模拟计算也是通过Floodgate系统来完成的。
动画系统(Animation)
• Gamebryo不仅支持人物模型的细节等级,也支持骨胳的细节等级。等级之间的切换由游戏系统的逻辑来完成。这部分逻辑是要由游戏开发者自己来写的。
• 支持骨胳动画、面部动画、层级动画(Layered Animation)
• 支持动画序列与动画序列,动画与物理模拟结果的混合。动画序列之间的混和方式可由动画工具(Animation Tool)来设定。
• 支持动画序列之间的同步处理。
• 支持人物根节点的动画累加。
• 具有响应动画驱动事件的功能。

物理系统(Physics
  在Gamebryo中,物理系统使用的是NVidia公司的PhysX系统。Emergent已经完整地把PhysX系统整合到Gamebryo中了。使用者要做的只是拿到NVidia公司的PhysX SDK及其DCC工具的插件。导出带有物理属性的物体或人物并加载到游戏中。在游戏程序中,首先对物理系统初始,再在更新过程中使Gamebryo系统和物理系统能顺利地交换数据。这个交换过程是这样完成的,首先由Gamebryo系统向物理系统传递数据,物理系统完成模拟计算后再把结果返还给Gamebryo系统。其工作流程如图07所示。

Gamebryo物理系统的工作流程
图片:GameDesignPipeline.png
附件为链接文件 Gamebryo.3.0 LightSpeed 详情请自行搜索,该资源 来源于互联网。 安装后目录,大小为10G左右 ├─Build │ ├─CoreRuntime │ │ └─Win32 │ │ ├─VC80 │ │ │ └─Property Sheets │ │ └─VC90 │ │ └─Property Sheets │ ├─Foundation │ │ └─Win32 │ │ ├─VC80 │ │ │ ├─efd │ │ │ ├─efdLogService │ │ │ ├─efdNetwork │ │ │ └─efdPhysX │ │ └─VC90 │ │ ├─efd │ │ ├─efdLogService │ │ ├─efdNetwork │ │ └─efdPhysX │ ├─GameFramework │ │ └─Win32 │ │ ├─VC80 │ │ │ ├─ecr │ │ │ ├─ecrInput │ │ │ ├─ecrLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─ecrPhysX │ │ │ ├─ecrPhysXLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egf │ │ │ ├─egfLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egfPhysX │ │ │ ├─egfPhysXLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egfPython │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egmAnimation │ │ │ ├─egmAnimationLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egmPhysXRagdoll │ │ │ ├─egmPhysXTerrain │ │ │ ├─egmTerrain │ │ │ ├─egmTerrainLua │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─egmToolServices │ │ │ ├─egmVisualizers │ │ │ └─egmVisualTracker │ │ └─VC90 │ │ ├─ecr │ │ ├─ecrInput │ │ ├─ecrLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─ecrPhysX │ │ ├─ecrPhysXLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egf │ │ ├─egfLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egfPhysX │ │ ├─egfPhysXLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egfPython │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egmAnimation │ │ ├─egmAnimationLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egmPhysXRagdoll │ │ ├─egmPhysXTerrain │ │ ├─egmTerrain │ │ ├─egmTerrainLua │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─egmToolServices │ │ ├─egmVisualizers │ │ └─egmVisualTracker │ ├─Samples │ │ └─Win32 │ │ ├─VC80 │ │ │ ├─BaseGame │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Scripts │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─CustomTypeExample1 │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─CustomTypeExample2 │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ └─HelloWorld │ │ │ └─Scripts │ │ └─VC90 │ │ ├─BaseGame │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Scripts │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─CustomTypeExample1 │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ ├─CustomTypeExample2 │ │ │ ├─Debug │ │ │ ├─DebugDLL │ │ │ ├─Release │ │ │ ├─ReleaseDLL │ │ │ ├─Shipping │ │ │ └─ShippingDLL │ │ └─HelloWorld │ │ └─Scripts │ └─Tools │ └─Win32 │ ├─VC80 │ │ ├─AssetController │ │ ├─ChannelServer │ │ └─DDEHeaderGen │ └─VC90 │ ├─AssetController │ ├─ChannelServer │ └─DDEHeaderGen ├─Documentation │ └─HTML │ ├─Art │ │ ├─Max │ │ │ └─images │ │ ├─Maya │ │ │ └─images │ │ ├─Other │ │ │ └─images │ │ └─XSI │ │ └─images │ ├─Convert │ │ ├─Announce │ │ └─Previous │ ├─GetStart │ │ ├─All │ │ ├─Architecture │ │ │ └─images │ │ ├─PC │ │ └─Xbox │ ├─Home │ ├─Learn │ │ ├─Demos │ │ │ └─images │ │ ├─FullDemos │ │ │ └─images │ │ ├─MangledMetal │ │ │ └─images │ │ ├─ProductTour │ │ │ └─images │ │ └─Tutorials │ │ └─images │ ├─Programmer │ │ ├─AssetRuntimeService │ │ │ └─images │ │ ├─Behaviors │ │ ├─Build │ │ ├─Builtins │ │ ├─Categories │ │ ├─CoreRuntimeServices │ │ ├─Entities │ │ ├─Entity_Interaction │ │ ├─Entity_Properties │ │ ├─Foundation │ │ ├─Frame_Rendering_System │ │ ├─Game_Initialization │ │ │ └─images │ │ ├─General_Topics │ │ │ └─images │ │ ├─Logging │ │ ├─Messages │ │ ├─Models │ │ │ └─images │ │ ├─NiFloodgate │ │ │ └─images │ │ ├─NiMaterial │ │ │ └─images │ │ ├─NiMesh │ │ │ └─images │ │ ├─NiMetrics │ │ ├─NiParticle │ │ │ └─images │ │ ├─NiPhysX │ │ ├─NiProgramLauncher │ │ ├─NiSceneGraphUpdateService │ │ ├─NiShader │ │ │ └─images │ │ ├─NiTerrain │ │ │ └─images │ │ ├─Object_Systems │ │ │ └─images │ │ ├─Scheduler │ │ ├─Scripting │ │ ├─Shadowing_System │ │ ├─SystemServices │ │ ├─Texturing │ │ │ └─images │ │ └─Toolbench │ │ └─images │ ├─Reference │ │ ├─ecr │ │ │ └─images │ │ ├─ecrInput │ │ │ └─images │ │ ├─ecrPhysX │ │ │ └─images │ │ ├─efd │ │ │ └─images │ │ ├─efdLogService │ │ │ └─images │ │ ├─efdNetwork │ │ │ └─images │ │ ├─efdPhysX │ │ │ └─images │ │ ├─egf │ │ │ └─images │ │ ├─egfLua │ │ │ └─images │ │ ├─egfPhysX │ │ │ └─images │ │ ├─egfPython │ │ │ └─images │ │ ├─egmAnimation │ │ │ └─images │ │ ├─egmPhysXRagdoll │ │ │ └─images │ │ ├─egmPhysXTerrain │ │ │ └─images │ │ ├─egmTerrain │ │ │ └─images │ │ ├─egmToolServices │ │ │ └─images │ │ ├─egmVisualizers │ │ │ └─images │ │ ├─egmVisualTracker │ │ │ └─images │ │ ├─MangledMetal │ │ │ └─images │ │ ├─Namespaces │ │ ├─NiAnimation │ │ │ └─images │ │ ├─NiAnimationCompression │ │ ├─NiApplication │ │ │ └─images │ │ ├─NiAudio │ │ ├─NiBinaryShaderLib │ │ ├─NiCgShaderLib │ │ ├─NiCollision │ │ │ └─images │ │ ├─NiCommonMaterialLibrary │ │ ├─NiControllerExtractor │ │ ├─NiCursor │ │ │ └─images │ │ ├─NiD3D10BinaryShaderLib │ │ ├─NiD3D10EffectShaderLib │ │ ├─NiD3D10Renderer │ │ │ └─images │ │ ├─NiD3DXEffectShaderLib │ │ ├─NiDevImageQuantizer │ │ ├─NiDX9Renderer │ │ │ └─images │ │ ├─NiEntity │ │ ├─NiFloodgate │ │ │ └─images │ │ ├─NiFont │ │ ├─NiFXLShaderLib │ │ ├─NiHDRReader │ │ ├─NiInput │ │ │ └─images │ │ ├─NiMain │ │ │ └─images │ │ ├─NiMaterialNodeXMLLibraryReader │ │ ├─NiMesh │ │ │ └─images │ │ ├─NiMeshProfileProcessor │ │ │ └─images │ │ ├─NiMeshProfileXMLParser │ │ │ └─images │ │ ├─NiMeshTools │ │ ├─NiMetricsOutput │ │ ├─NiNBTGenerator │ │ ├─NiOpenEXRReader │ │ ├─NiOptimization │ │ ├─NiParticle │ │ │ └─images │ │ ├─NiPhysX │ │ │ └─images │ │ ├─NiPhysXFluid │ │ │ └─Images │ │ ├─NiPhysXParticle │ │ │ └─Images │ │ ├─NiPhysXSharedData │ │ ├─NiPhysXTools │ │ ├─NiPluginToolkit │ │ │ └─images │ │ ├─NiPNGReader │ │ ├─NiPortal │ │ │ └─images │ │ ├─NiProgramLauncher │ │ │ └─images │ │ ├─NiSample │ │ ├─NiSceneGraphUpdateService │ │ │ └─images │ │ ├─NiStandardSharedData │ │ ├─NiStripify │ │ ├─NiSystem │ │ ├─NiTerrain │ │ │ └─images │ │ ├─NiTerrainComponent │ │ │ └─images │ │ ├─NiTerrainPhysX │ │ │ └─images │ │ ├─NiUserInterface │ │ ├─NiViewMath │ │ ├─NiVisualTracker │ │ ├─NSBShaderLib │ │ ├─NSFParserLib │ │ ├─QuickRef_Behaviors │ │ ├─QuickRef_Builtins │ │ ├─QuickRef_Config │ │ ├─QuickRef_Models │ │ ├─QuickRef_Services │ │ └─Tool_Plug_ins │ │ └─images │ ├─RelNotes │ │ ├─All │ │ ├─PC │ │ └─Xbox │ ├─shared │ ├─ThirdPartyCode │ │ └─All │ ├─Tools │ │ ├─Animation_Tool │ │ │ └─images │ │ ├─AssetController │ │ ├─Asset_Viewer │ │ │ └─images │ │ ├─ColladaToNSFConverter │ │ ├─CubeMapMaker │ │ │ └─images │ │ ├─DataDrivenEnum │ │ ├─DynamicCgCompiler │ │ ├─EntityModelingTool │ │ │ └─images │ │ ├─ImageGenerator │ │ ├─MeshProfileCompiler │ │ ├─NiFontCreator │ │ │ └─images │ │ ├─NifViewer │ │ │ └─images │ │ ├─NiMaterialNodeXMLLibraryParser │ │ ├─NiThumbnailExtractor │ │ │ └─images │ │ ├─NSFParserUtility │ │ │ └─images │ │ ├─PhysX_Nif_Viewer │ │ ├─PhysX_Scene_Graph_Printer │ │ ├─Scene_Designer │ │ │ └─images │ │ ├─Scene_Graph_Printer │ │ ├─ScriptDebugger │ │ │ └─images │ │ ├─Toolbench │ │ │ └─images │ │ ├─Tool_Plug_in_Batch_Tool │ │ ├─Tool_Plug_in_Testbed │ │ │ └─images │ │ └─WorldBuilder │ │ ├─icons │ │ └─images │ └─Tutorials │ ├─Base_Game │ │ ├─images │ │ └─templates │ ├─Hello_World │ │ ├─images │ │ └─templates │ └─Rapid_Iteration ├─Media │ ├─asset-web-config │ ├─asset-web-metadata │ ├─Enums │ ├─PhysXModelLibrary │ ├─Samples │ │ ├─GameFramework │ │ │ ├─BaseGame │ │ │ ├─CustomTypeExample1 │ │ │ ├─CustomTypeExample2 │ │ │ ├─HelloWorld │ │ │ └─RapidPrototyping │ │ │ ├─Exported │ │ │ └─RapidPrototypingWorld │ │ ├─Graphics │ │ │ └─Art Files │ │ └─SampleUI │ ├─Shaders │ │ └─Data │ │ ├─D3D10 │ │ ├─DX9 │ │ ├─Generated │ │ │ └─NiStandardMaterial │ │ └─Textures │ ├─StandardModelLibrary │ │ └─Media │ └─ToolPluginsData │ └─MeshProfiles ├─others │ ├─Addons │ │ ├─GamebryoExporter │ │ │ ├─Application │ │ │ │ ├─Plugins │ │ │ │ └─toolbars │ │ │ └─Data │ │ │ └─Scripts │ │ └─GamebryoMaterial │ │ ├─Application │ │ │ ├─bin │ │ │ │ └─nt-x86 │ │ │ ├─spdl │ │ │ └─toolbars │ │ └─Data │ │ ├─DSPresets │ │ │ └─Shaders │ │ │ └─Realtime │ │ └─Scripts │ ├─bin │ │ └─plug-ins │ │ └─Gamebryo Scripts │ ├─Icons │ ├─plugins │ │ └─MaxImmerse │ │ └─Scripts │ ├─scripts │ │ ├─Gamebryo │ │ ├─others │ │ └─startup │ └─ui │ ├─Icons │ └─macroscripts ├─Samples │ ├─GameDemos │ │ ├─DodgeBall │ │ │ ├─Art_Files │ │ │ ├─DATA │ │ │ │ └─WIN32 │ │ │ │ ├─Menu │ │ │ │ ├─MILES │ │ │ │ └─SOUNDS │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─LenguinsOnIce │ │ │ ├─Art Files │ │ │ │ ├─Baby │ │ │ │ ├─Fx │ │ │ │ ├─Level │ │ │ │ └─Moma │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ ├─BABY │ │ │ │ ├─Fx │ │ │ │ ├─LEVELS │ │ │ │ ├─Miles │ │ │ │ ├─MOMMA │ │ │ │ ├─ScreenOverlay │ │ │ │ ├─SHADERS │ │ │ │ │ ├─DX9 │ │ │ │ │ └─Generated │ │ │ │ │ └─NiStandardMaterial │ │ │ │ └─SOUNDS │ │ │ ├─NiMenu │ │ │ ├─Tools │ │ │ │ └─MESHDICER │ │ │ │ └─Win32 │ │ │ │ ├─VC80 │ │ │ │ └─VC90 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MangledMetal │ │ │ ├─Art Files │ │ │ │ ├─Export │ │ │ │ │ ├─Characters │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ ├─Pedestrians │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ └─.mayaSwatches │ │ │ │ │ ├─FX │ │ │ │ │ └─Props │ │ │ │ ├─Export_Manual │ │ │ │ │ ├─Characters │ │ │ │ │ │ └─DeathRipper │ │ │ │ │ ├─Props │ │ │ │ │ └─Proxies │ │ │ │ ├─ToolScripts │ │ │ │ │ ├─Max │ │ │ │ │ │ ├─plugins │ │ │ │ │ │ │ └─MaxImmerse │ │ │ │ │ │ │ └─Scripts │ │ │ │ │ │ └─UI │ │ │ │ │ │ └─MacroScripts │ │ │ │ │ └─Maya │ │ │ │ │ ├─bin │ │ │ │ │ │ └─plug-ins │ │ │ │ │ │ └─Gamebryo Scripts │ │ │ │ │ └─scripts │ │ │ │ │ └─others │ │ │ │ └─TriggersLibrary │ │ │ ├─Data │ │ │ │ ├─asset-web-config │ │ │ │ ├─asset-web-metadata │ │ │ │ ├─Enums │ │ │ │ ├─Exported │ │ │ │ ├─HUD │ │ │ │ ├─MangledMetal │ │ │ │ │ ├─EntityModels │ │ │ │ │ ├─FlatModels │ │ │ │ │ ├─GamebryoData │ │ │ │ │ │ ├─D3D10 │ │ │ │ │ │ │ ├─Characters │ │ │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ │ ├─FX │ │ │ │ │ │ │ ├─Props │ │ │ │ │ │ │ ├─Proxies │ │ │ │ │ │ │ └─Terrain │ │ │ │ │ │ ├─DX9 │ │ │ │ │ │ │ ├─Characters │ │ │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ │ ├─FX │ │ │ │ │ │ │ ├─Props │ │ │ │ │ │ │ ├─Proxies │ │ │ │ │ │ │ └─Terrain │ │ │ │ │ │ └─Generic │ │ │ │ │ │ ├─Characters │ │ │ │ │ │ │ ├─BloatThrall │ │ │ │ │ │ │ ├─DeathRipper │ │ │ │ │ │ │ ├─Pedestrians │ │ │ │ │ │ │ ├─Reaper │ │ │ │ │ │ │ └─Vandal │ │ │ │ │ │ ├─FX │ │ │ │ │ │ ├─Props │ │ │ │ │ │ ├─Proxies │ │ │ │ │ │ └─Terrain │ │ │ │ │ │ ├─Level01 │ │ │ │ │ │ │ └─Sector_0_0 │ │ │ │ │ │ └─Level03 │ │ │ │ │ │ └─Sector_0_0 │ │ │ │ │ └─Scripts │ │ │ │ ├─PhysXModelLibrary │ │ │ │ ├─Shaders │ │ │ │ │ ├─DX9 │ │ │ │ │ ├─NiDirShadowWriteMat │ │ │ │ │ ├─NiStandardMaterial │ │ │ │ │ └─NiTerrainMaterial │ │ │ │ ├─StandardModelLibrary │ │ │ │ │ └─Media │ │ │ │ └─TriggersLibrary │ │ │ │ ├─EntityModels │ │ │ │ ├─FlatModels │ │ │ │ ├─GamebryoData │ │ │ │ │ └─Generic │ │ │ │ │ └─Props │ │ │ │ └─Scripts │ │ │ ├─Tools │ │ │ │ └─BlockFilter │ │ │ │ ├─bin │ │ │ │ └─Win32 │ │ │ │ └─VC80 │ │ │ └─Win32 │ │ │ ├─ResourceFiles │ │ │ ├─VC80 │ │ │ │ ├─Release │ │ │ │ └─Shipping │ │ │ └─VC90 │ │ │ ├─Release │ │ │ └─Shipping │ │ ├─MetalWars │ │ │ ├─Art Files │ │ │ │ └─Textures Win32 │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ ├─Killbot │ │ │ │ ├─Miles │ │ │ │ ├─Scene │ │ │ │ ├─Shaders │ │ │ │ │ └─Generated │ │ │ │ │ ├─ColorDepthMaterial │ │ │ │ │ └─NiStandardMaterial │ │ │ │ └─Sound │ │ │ ├─Menu │ │ │ ├─Sound │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MOUT │ │ │ ├─Art Files │ │ │ │ ├─DesertTown │ │ │ │ │ └─textures │ │ │ │ └─Soldier │ │ │ ├─Data │ │ │ │ ├─DesertTown │ │ │ │ ├─Shaders │ │ │ │ │ ├─Common │ │ │ │ │ └─D3D10 │ │ │ │ └─Soldier │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─SceneApp │ │ ├─Data │ │ │ └─Win32 │ │ │ └─Shaders │ │ │ └─Generated │ │ │ ├─NiDirShadowWriteMat │ │ │ ├─NiSpotShadowWriteMat │ │ │ └─NiStandardMaterial │ │ ├─ShadowMaterialNodeLibrary │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─GameFrameworkTechDemos │ │ ├─BaseGame │ │ ├─CustomTypeExample1 │ │ ├─CustomTypeExample2 │ │ ├─Emergent.Toolbench.CustomType │ │ │ ├─bin │ │ │ │ └─Shipping │ │ │ │ └─Emergent.Toolbench.CustomType │ │ │ ├─Editors │ │ │ ├─obj │ │ │ │ └─Shipping │ │ │ │ └─Editors │ │ │ ├─Properties │ │ │ ├─References │ │ │ └─Types │ │ └─HelloWorld │ ├─GraphicsTechDemos │ │ ├─BackgroundLoad │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─WIN32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─BadSushi │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CharacterAnimationDemo │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CharacterPerformanceDemo │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ ├─D3D10 │ │ │ │ └─DX9 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CollisionTestDynamic │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CollisionTestStatic │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─CubeMap │ │ │ ├─ArtFiles │ │ │ │ └─Textures_Win32 │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─DX9MSAATextures │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─DynamicTexture │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─InputDemo │ │ │ ├─Actions │ │ │ ├─DATA │ │ │ │ └─WIN32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─LogoApplication │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MeshCreation │ │ │ ├─Art_Files │ │ │ │ └─Water_Height │ │ │ ├─Data │ │ │ ├─Kernels │ │ │ │ └─NiWaterKernel │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─MeshInstancing │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXFluids │ │ │ ├─ArtFiles │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXParticles │ │ │ ├─ArtFiles │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXParticlesInCode │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXTerrainDemo │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ ├─NIFs │ │ │ │ ├─Palettes │ │ │ │ ├─Terrain │ │ │ │ │ └─Sector_0_0 │ │ │ │ └─WaterNormalMaps │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─PhysXTiming │ │ │ ├─ArtFiles │ │ │ ├─Data │ │ │ │ └─Win32 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─Picking │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ └─Shaders │ │ │ │ ├─D3D10 │ │ │ │ └─DX9 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ProfileSample │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ShaderSample │ │ │ ├─Data │ │ │ │ ├─Art Files │ │ │ │ └─Shaders │ │ │ │ ├─D3D10 │ │ │ │ ├─DX9 │ │ │ │ └─Generated │ │ │ │ └─NiStandardMaterial │ │ │ ├─sdk │ │ │ │ └─Win32 │ │ │ │ ├─Include │ │ │ │ └─Lib │ │ │ │ ├─vc80 │ │ │ │ │ ├─debug │ │ │ │ │ ├─debugdll │ │ │ │ │ ├─release │ │ │ │ │ ├─releasedll │ │ │ │ │ ├─shipping │ │ │ │ │ └─shippingdll │ │ │ │ └─VC90 │ │ │ │ ├─Debug │ │ │ │ ├─DebugDLL │ │ │ │ ├─Release │ │ │ │ ├─ReleaseDLL │ │ │ │ ├─Shipping │ │ │ │ └─ShippingDLL │ │ │ ├─ShaderLibrary │ │ │ │ └─Win32 │ │ │ │ ├─VC80 │ │ │ │ └─VC90 │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ShadowMap │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ │ └─Shaders │ │ │ │ ├─DX9 │ │ │ │ └─Generated │ │ │ │ ├─NiDirShadowWriteMat │ │ │ │ ├─NiSpotShadowWriteMat │ │ │ │ ├─NiStandardMaterial │ │ │ │ └─NiVSMBlurMaterial │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─SimpleApp │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─SoftParticles │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─StandardMaterial │ │ │ ├─Art_Files │ │ │ │ └─Textures_Win32 │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─StencilShadow │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─TerrainDemo │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ │ ├─NIFs │ │ │ │ ├─Palettes │ │ │ │ ├─terrain │ │ │ │ │ └─Sector_0_0 │ │ │ │ └─WaterNormalMaps │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─UnicodeCharacterSets │ │ │ ├─Data │ │ │ │ └─Font │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─VertexLightingPipeline │ │ │ ├─Art Files │ │ │ ├─Data │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─VideoTexture │ │ ├─Data │ │ │ └─Miles │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─Models │ │ ├─AnimationToolExamples │ │ │ ├─BabyLenguin │ │ │ │ └─Max │ │ │ ├─CyberMonkey │ │ │ │ └─Art_Files │ │ │ │ └─.mayaSwatches │ │ │ ├─DestroyerBot │ │ │ │ └─Maya │ │ │ ├─Killbot │ │ │ │ ├─Killbot Default_Pipeline │ │ │ │ │ └─Max │ │ │ │ │ └─maps │ │ │ │ └─Max │ │ │ │ └─maps │ │ │ ├─ROCKY │ │ │ │ └─Max │ │ │ ├─Skeleton │ │ │ ├─Slim │ │ │ ├─Soldier │ │ │ │ └─Max │ │ │ │ └─textures │ │ │ └─Tutorials │ │ │ ├─Blacksmith │ │ │ │ └─Max │ │ │ └─Redcoat │ │ │ └─Max │ │ ├─Collision │ │ │ ├─MAX │ │ │ │ └─1900 MISC Hierarchy (Girl) │ │ │ ├─MAYA │ │ │ │ └─2900 MISC Hierarchy (Robot) │ │ │ └─NIF │ │ ├─Max Artist Examples │ │ │ ├─PhysX │ │ │ │ └─Art Files │ │ │ └─Textures │ │ ├─Maya Artist Examples │ │ │ ├─Animation │ │ │ ├─Geometry │ │ │ ├─Material │ │ │ ├─Misc │ │ │ ├─Particle │ │ │ ├─PhysX │ │ │ └─Shaders │ │ ├─SceneDesignerExamples │ │ │ ├─Holodeck │ │ │ │ ├─Data │ │ │ │ │ └─Max │ │ │ │ └─Palettes │ │ │ ├─MadLab │ │ │ │ ├─Art Files │ │ │ │ │ └─MadLab Materials │ │ │ │ ├─Palettes │ │ │ │ └─Win32 │ │ │ │ └─Shaders │ │ │ │ └─Generated │ │ │ └─Ruins │ │ │ ├─Art_Files │ │ │ ├─Data │ │ │ └─Palettes │ │ └─XSI Artist Examples │ │ ├─Pictures │ │ └─Scenes │ │ └─Exported │ ├─SampleLibs │ │ ├─SamplePluginsDLL │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─SceneDesignerPlugins │ │ ├─SamplePluginCpp │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─SamplePluginCs │ │ ├─bin │ │ │ └─ShippingDLL │ │ └─obj │ │ └─ShippingDLL │ └─Tutorials │ ├─Graphics │ │ ├─01-Renderers │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─02-NIFFiles │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─03-Shaders │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─04-SceneAttachment │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─05-Transforms │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─06-TimeControllers │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─07-UserInput │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─08-ScreenTexture │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─09-RenderedTexture │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ └─VC90 │ │ ├─ArtFiles │ │ └─Data │ │ └─Shaders │ │ ├─Common │ │ └─D3D10 │ └─PhysX │ ├─01_Initializing │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─02_BallInBox │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─03_Kinematic │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─04_Asynchronous │ │ └─Win32 │ │ ├─VC80 │ │ └─VC90 │ ├─ArtFiles │ │ ├─Models │ │ └─Textures │ └─Data │ └─Win32 ├─sdk │ └─Win32 │ ├─Bin │ │ └─VC90 │ │ └─Shipping │ │ ├─Data │ │ ├─Plugins │ │ │ ├─Emergent.Toolbench.Actions │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.Assets │ │ │ ├─Emergent.Toolbench.Assets.Framework │ │ │ ├─Emergent.Toolbench.CodeEditor │ │ │ │ ├─Compilers │ │ │ │ ├─Icons │ │ │ │ └─Syntax │ │ │ ├─Emergent.Toolbench.Collections.Test │ │ │ ├─Emergent.Toolbench.Connections │ │ │ │ └─Images │ │ │ ├─Emergent.Toolbench.ConsoleLogger │ │ │ ├─Emergent.Toolbench.ContentExporter │ │ │ ├─Emergent.Toolbench.ContentService │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.EntityModeling │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.EntityModeling.UI │ │ │ │ ├─Icons │ │ │ │ └─Resources │ │ │ │ └─Images │ │ │ ├─Emergent.Toolbench.EntityModeling.UI.ModelFactory │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.FileAssociator │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.FileAssociator.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.FileSystemMonitor │ │ │ ├─Emergent.Toolbench.Foundation.Interop │ │ │ ├─Emergent.Toolbench.Framework │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.Gamebryo │ │ │ ├─Emergent.Toolbench.GameSolution │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.GameSolution.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.MigrationService │ │ │ ├─Emergent.Toolbench.OutputView │ │ │ │ ├─Icons │ │ │ │ ├─Resources │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.PluginBrowser │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.PropertyType │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.ScriptDebugger │ │ │ ├─Emergent.Toolbench.ScriptDebugger.Messaging │ │ │ ├─Emergent.Toolbench.ScriptDebugger.UI │ │ │ │ └─Images │ │ │ ├─Emergent.Toolbench.Settings │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.Settings.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.ShortcutEditor │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.TestAutomater │ │ │ ├─Emergent.Toolbench.TestRunner │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.TextEditor │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.TypeService │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.UI │ │ │ ├─Emergent.Toolbench.UI.Common │ │ │ ├─Emergent.Toolbench.UI.ContentDialogs │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.UI.EditableService │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.UI.Help │ │ │ ├─Emergent.Toolbench.UI.Menus │ │ │ ├─Emergent.Toolbench.UI.Undo │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.UI.Workbench │ │ │ │ └─Schemas │ │ │ ├─Emergent.Toolbench.WorldBuilder │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.WorldBuilder.Framework │ │ │ ├─Emergent.Toolbench.WorldBuilder.Messaging │ │ │ ├─Emergent.Toolbench.WorldBuilder.Terrain │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.WorldBuilder.UI │ │ │ │ └─Icons │ │ │ ├─Emergent.Toolbench.WorldBuilder.UI.EmbeddedViewer │ │ │ ├─Emergent.Toolbench.WorldBuilder.UI.Gamebryo │ │ │ │ ├─Icons │ │ │ │ └─Schemas │ │ │ └─Emergent.Toolbench.WorldBuilder.UI.RenderModes │ │ └─Schemas │ ├─DLL │ │ ├─ShaderLibs │ │ │ ├─VC80 │ │ │ └─VC90 │ │ └─ToolPlugins │ │ ├─ConsoleViewers │ │ │ └─SceneViewerD3DData │ │ ├─ImageGenerator │ │ │ ├─Debug │ │ │ └─Release │ │ ├─VC80 │ │ └─VC90 │ ├─Include │ │ ├─ecr │ │ ├─ecrInput │ │ ├─ecrPhysX │ │ ├─efd │ │ │ └─Win32 │ │ ├─efdLogService │ │ ├─efdNetwork │ │ │ └─Win32 │ │ ├─efdPhysX │ │ ├─egf │ │ ├─egfLua │ │ ├─egfPhysX │ │ ├─egfPython │ │ ├─egmAnimation │ │ ├─egmPhysXRagdoll │ │ ├─egmPhysXTerrain │ │ ├─egmTerrain │ │ ├─egmToolServices │ │ ├─egmVisualizers │ │ └─egmVisualTracker │ ├─Lib │ │ ├─vc80 │ │ │ ├─debug │ │ │ ├─DebugDLL │ │ │ ├─release │ │ │ ├─ReleaseDLL │ │ │ ├─shipping │ │ │ └─ShippingDLL │ │ └─VC90 │ │ ├─Debug │ │ ├─DebugDLL │ │ ├─Release │ │ ├─ReleaseDLL │ │ ├─Shipping │ │ └─ShippingDLL │ ├─Lua │ ├─Python │ └─Resource └─Source ├─3rdParty │ ├─Bison │ │ └─Bison2.1 │ │ ├─bin │ │ ├─contrib │ │ │ └─bison │ │ │ └─2.1 │ │ │ ├─bison-2.1 │ │ │ └─bison-2.1-src │ │ │ ├─data │ │ │ └─doc │ │ ├─doc │ │ │ ├─bison │ │ │ │ └─2.1 │ │ │ │ └─bison-2.1 │ │ │ ├─Open Group Base Specifications Issue 6 │ │ │ └─UnixV7 │ │ ├─include │ │ ├─info │ │ ├─lib │ │ ├─man │ │ │ ├─cat1 │ │ │ ├─html │ │ │ ├─man1 │ │ │ ├─pdf │ │ │ └─ps │ │ ├─manifest │ │ └─share │ │ ├─aclocal │ │ ├─bison │ │ │ └─m4sugar │ │ └─locale │ │ ├─da │ │ │ └─LC_MESSAGES │ │ ├─de │ │ │ └─LC_MESSAGES │ │ ├─es │ │ │ └─LC_MESSAGES │ │ ├─et │ │ │ └─LC_MESSAGES │ │ ├─fr │ │ │ └─LC_MESSAGES │ │ ├─ga │ │ │ └─LC_MESSAGES │ │ ├─hr │ │ │ └─LC_MESSAGES │ │ ├─id │ │ │ └─LC_MESSAGES │ │ ├─it │ │ │ └─LC_MESSAGES │ │ ├─ja │ │ │ └─LC_MESSAGES │ │ ├─ms │ │ │ └─LC_MESSAGES │ │ ├─nb │ │ │ └─LC_MESSAGES │ │ ├─nl │ │ │ └─LC_MESSAGES │ │ ├─pl │ │ │ └─LC_MESSAGES │ │ ├─pt_BR │ │ │ └─LC_MESSAGES │ │ ├─ro │ │ │ └─LC_MESSAGES │ │ ├─ru │ │ │ └─LC_MESSAGES │ │ ├─rw │ │ │ └─LC_MESSAGES │ │ ├─sv │ │ │ └─LC_MESSAGES │ │ ├─tr │ │ │ └─LC_MESSAGES │ │ └─vi │ │ └─LC_MESSAGES │ ├─DockPanel │ │ └─WinFormsUI │ │ └─VC80 │ ├─enet │ │ ├─docs │ │ └─include │ │ └─enet │ ├─Flex │ │ └─Flex2.5.4a │ │ ├─bin │ │ ├─contrib │ │ │ └─flex │ │ │ └─2.5.4a │ │ │ └─flex-2.5.4a │ │ │ └─MISC │ │ │ ├─Borland │ │ │ ├─fastwc │ │ │ └─MVS │ │ ├─man │ │ │ └─cat1 │ │ └─manifest │ ├─LibPNG │ │ ├─Installer │ │ ├─NiProject │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ │ ├─Debug │ │ │ │ ├─Release │ │ │ │ └─Shipping │ │ │ └─VC90 │ │ │ ├─Debug │ │ │ ├─Release │ │ │ └─Shipping │ │ └─Package │ │ ├─contrib │ │ │ ├─gregbook │ │ │ ├─pngminus │ │ │ ├─pngsuite │ │ │ └─visupng │ │ ├─projects │ │ │ ├─beos │ │ │ ├─cbuilder5 │ │ │ ├─visualc6 │ │ │ └─visualc71 │ │ └─scripts │ ├─Lua │ │ ├─doc │ │ ├─Installer │ │ │ ├─LNUM │ │ │ └─Lua │ │ └─Package │ │ ├─etc │ │ ├─Porting │ │ ├─Profiler │ │ │ └─analyzer │ │ ├─src │ │ └─test │ ├─OpenEXR │ │ ├─Installer │ │ ├─NiProject │ │ │ └─Win32 │ │ │ ├─VC80 │ │ │ │ ├─Debug_Half │ │ │ │ ├─Debug_Iex │ │ │ │ ├─Debug_IlmImf │ │ │ │ ├─Debug_IlmThread │ │ │ │ ├─Debug_Imath │ │ │ │ ├─Release_Half │ │ │ │ ├─Release_Iex │ │ │ │ ├─Release_IlmImf │ │ │ │ ├─Release_IlmThread │ │ │ │ ├─Release_Imath │ │ │ │ ├─Shipping_Half │ │ │ │ ├─Shipping_Iex │ │ │ │ ├─Shipping_IlmImf │ │ │ │ ├─Shipping_IlmThread │ │ │ │ └─Shipping_Imath │ │ │ └─VC90 │ │ │ ├─Debug_Half │ │ │ ├─Debug_Iex │ │ │ ├─Debug_IlmImf │ │ │ ├─Debug_IlmThread │ │ │ ├─Debug_Imath │ │ │ ├─Release_Half │ │ │ ├─Release_Iex │ │ │ ├─Release_IlmImf │ │ │ ├─Release_IlmThread │ │ │ ├─Release_Imath │ │ │ ├─Shipping_Half │ │ │ ├─Shipping_Iex │ │ │ ├─Shipping_IlmImf │ │ │ ├─Shipping_IlmThread │ │ │ └─Shipping_Imath │ │ └─Package │ │ ├─ILMBase │ │ │ ├─config │ │ │ ├─config.windows │ │ │ ├─Half │ │ │ ├─HalfTest │ │ │ ├─Iex │ │ │ ├─IexTest │ │ │ ├─IlmThread │ │ │ ├─Imath │ │ │ ├─ImathTest │ │ │ ├─m4 │ │ │ └─vc │ │ │ ├─createDLL │ │ │ ├─vc7 │ │ │ │ └─IlmBase │ │ │ │ ├─createDLL │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─debug │ │ │ │ ├─Half │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─HalfTest │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─Iex │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─IexTest │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─IlmThread │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─Imath │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ ├─ImathTest │ │ │ │ │ ├─Debug │ │ │ │ │ └─Release │ │ │ │ └─release │ │ │ └─vc8 │ │ │ └─IlmBase │ │ │ ├─createDLL │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─debug │ │ │ ├─Half │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─HalfTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─Iex │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─IexTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─IlmThread │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─Imath │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─ImathTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ └─release │ │ └─OpenEXR │ │ ├─config │ │ ├─config.windows │ │ ├─doc │ │ ├─exrenvmap │ │ ├─exrheader │ │ ├─exrmakepreview │ │ ├─exrmaketiled │ │ ├─exrstdattr │ │ ├─IlmImf │ │ ├─IlmImfExamples │ │ ├─IlmImfFuzzTest │ │ ├─IlmImfTest │ │ ├─m4 │ │ └─vc │ │ ├─vc7 │ │ │ └─OpenEXR │ │ │ ├─debug │ │ │ ├─exrenvmap │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─exrheader │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─exrmakepreview │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─exrmaketiled │ │ │ │ └─Debug │ │ │ ├─exrstdattr │ │ │ │ └─Debug │ │ │ ├─IlmImf │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ ├─IlmImfExamples │ │ │ │ ├─CVS │ │ │ │ ├─Debug │ │ │ │ │ └─CVS │ │ │ │ └─Release │ │ │ │ └─CVS │ │ │ ├─IlmImfTest │ │ │ │ ├─Debug │ │ │ │ └─Release │ │ │ └─release │ │ └─vc8 │ │ └─OpenEXR │ │ ├─debug │ │ ├─exrenvmap │ │ │ ├─Debug │ │ │ └─Release │ │ ├─exrheader │ │ │ ├─Debug │ │ │ └─Release │ │ ├─exrmakepreview │ │ │ ├─Debug │ │ │ └─Release │ │ ├─exrmaketiled │ │ │ └─Debug │ │ ├─exrstdattr │ │ │ └─Debug │ │ ├─IlmImf │ │ │ ├─Debug │ │ │ └─Release │ │ ├─IlmImfExamples │ │ │ ├─CVS │ │ │ ├─Debug │ │ │ │ └─CVS │ │ │ └─Release │ │ │ └─CVS │ │ ├─IlmImfTest │ │ │ ├─Debug │ │ │ └─Release │ │ └─release │ ├─Python │ │ ├─Grammar │ │ ├─Include │ │ ├─Lib │ │ │ ├─bsddb │ │ │ │ └─test │ │ │ ├─compiler │ │ │ ├─ctypes │ │ │ │ ├─macholib │ │ │ │ └─test │ │ │ ├─curses │ │ │ ├─distutils │ │ │ │ ├─command │ │ │ │ └─tests │ │ │ ├─email │ │ │ │ ├─mime │ │ │ │ └─test │ │ │ │ └─data │ │ │ ├─encodings │ │ │ ├─hotshot │ │ │ ├─idlelib │ │ │ │ └─Icons │ │ │ ├─lib-tk │ │ │ ├─logging │ │ │ ├─msilib │ │ │ ├─site-packages │ │ │ ├─sqlite3 │ │ │ │ └─test │ │ │ ├─wsgiref │ │ │ └─xml │ │ │ ├─dom │ │ │ ├─etree │ │ │ ├─parsers │ │ │ └─sax │ │ ├─Linux │ │ │ ├─bin │ │ │ ├─include │ │ │ │ └─python2.5 │ │ │ │ ├─core │ │ │ │ ├─module │ │ │ │ ├─pickling │ │ │ │ └─platf │ │ │ ├─lib │ │ │ │ └─python2.5 │ │ │ │ ├─bsddb │ │ │ │ │ └─test │ │ │ │ ├─compiler │ │ │ │ ├─config │ │ │ │ ├─ctypes │ │ │ │ │ ├─macholib │ │ │ │ │ └─test │ │ │ │ ├─curses │ │ │ │ ├─db-packages │ │ │ │ │ ├─twisted │ │ │ │ │ │ ├─application │ │ │ │ │ │ ├─conch │ │ │ │ │ │ │ ├─client │ │ │ │ │ │ │ ├─insults │ │ │ │ │ │ │ ├─openssh_compat │ │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ │ ├─ssh │ │ │ │ │ │ │ ├─test │ │ │ │ │ │ │ └─ui │ │ │ │ │ │ ├─cred │ │ │ │ │ │ ├─enterprise │ │ │ │ │ │ ├─internet │ │ │ │ │ │ │ ├─cfsupport │ │ │ │ │ │ │ └─iocpreactor │ │ │ │ │ │ ├─lore │ │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─mail │ │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─manhole │ │ │ │ │ │ │ └─ui │ │ │ │ │ │ ├─names │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─news │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─persisted │ │ │ │ │ │ │ └─journal │ │ │ │ │ │ ├─plugins │ │ │ │ │ │ ├─protocols │ │ │ │ │ │ │ ├─gps │ │ │ │ │ │ │ └─mice │ │ │ │ │ │ ├─python │ │ │ │ │ │ │ └─zsh │ │ │ │ │ │ ├─runner │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ ├─spread │ │ │ │ │ │ │ └─ui │ │ │ │ │ │ ├─tap │ │ │ │ │ │ ├─test │ │ │ │ │ │ ├─trial │ │ │ │ │ │ │ └─test │ │ │ │ │ │ ├─web │ │ │ │ │ │ │ ├─test │ │ │ │ │ │ │ └─woven │ │ │ │ │ │ └─words │ │ │ │ │ │ ├─im │ │ │ │ │ │ ├─protocols │ │ │ │ │ │ │ └─jabber │ │ │ │ │ │ ├─scripts │ │ │ │ │ │ ├─test │ │ │ │ │ │ └─xish │ │ │ │ │ └─zope │ │ │ │ │ └─interface │ │ │ │ │ ├─common │ │ │ │ │ └─tests │ │ │ │ ├─distutils │ │ │ │ │ ├─command │ │ │ │ │ └─tests │ │ │ │ ├─email │ │ │ │ │ ├─mime │ │ │ │ │ └─test │ │ │ │ │ └─data │ │ │ │ ├─encodings │ │ │ │ ├─hotshot │ │ │ │ ├─idlelib │ │ │ │ │ └─Icons │ │ │ │ ├─lib-dynload │ │ │ │ ├─lib-tk │ │ │ │ ├─logging │ │ │ │ ├─msilib │ │ │ │ ├─site-packages │ │ │ │ │ ├─wx-2.8-msw-unicode │ │ │ │ │ │ ├─docs │ │ │ │ │ │ │ └─licence │ │ │ │ │ │ ├─wx │ │ │ │ │ │ │ ├─build │ │ │ │ │ │ │ ├─lib │ │ │ │ │ │ │ │ ├─analogclock │ │ │ │ │ │ │ │ │ └─lib_setup │ │ │ │ │ │ │ │ ├─art │ │ │ │ │ │ │ │ ├─colourchooser │ │ │ │ │ │ │ │ ├─editor │ │ │ │ │ │ │ │ ├─floatcanvas │ │ │ │ │ │ │ │ │ └─Utilities │ │ │ │ │ │ │ │ ├─masked │ │ │ │ │ │ │ │ ├─mixins │ │ │ │ │ │ │ │ └─ogl │ │ │ │ │ │ │ ├─loca
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值