├── .gitattributes ├── .gitignore ├── CollisionsMng ├── App.config ├── Collisions codes.txt ├── CollisionsMng.csproj ├── KCL.cs ├── Pa_format.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── ModelViewer ├── ModelViewer.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── UserControl1.xaml ├── UserControl1.xaml.cs └── packages.config ├── ObjectNotes.txt ├── ObjectsDb.xml ├── README.md ├── The4Dimension.sln ├── The4Dimension ├── App.config ├── BgmEditors │ ├── FrmBgmMain.Designer.cs │ ├── FrmBgmMain.cs │ ├── FrmBgmMain.resx │ ├── FrmMakeBcstm.Designer.cs │ ├── FrmMakeBcstm.cs │ ├── FrmMakeBcstm.resx │ └── TempoWrite.cs ├── BymlConverter.cs ├── BymlFormat.cs ├── CustomClasses.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── FormEditors │ ├── Frm2DSection.Designer.cs │ ├── Frm2DSection.cs │ ├── Frm2DSection.resx │ ├── FrmAddCameraSettings.Designer.cs │ ├── FrmAddCameraSettings.cs │ ├── FrmAddCameraSettings.resx │ ├── FrmAddObj.Designer.cs │ ├── FrmAddObj.cs │ ├── FrmAddObj.resx │ ├── FrmAddValue.Designer.cs │ ├── FrmAddValue.cs │ ├── FrmAddValue.resx │ ├── FrmCCNTEdit.Designer.cs │ ├── FrmCCNTEdit.cs │ ├── FrmCCNTEdit.resx │ ├── FrmObjEditor.Designer.cs │ ├── FrmObjEditor.cs │ ├── FrmObjEditor.resx │ ├── FrmObjImport.Designer.cs │ ├── FrmObjImport.cs │ ├── FrmObjImport.resx │ ├── FrmRailPointEditor.Designer.cs │ ├── FrmRailPointEditor.cs │ ├── FrmRailPointEditor.resx │ ├── FrmSearchResults.Designer.cs │ ├── FrmSearchResults.cs │ ├── FrmSearchResults.resx │ ├── FrmSearchValInput.Designer.cs │ ├── FrmSearchValInput.cs │ ├── FrmSearchValInput.resx │ ├── FrmStringInput.Designer.cs │ ├── FrmStringInput.cs │ ├── FrmStringInput.resx │ ├── FrmXmlEditor.Designer.cs │ ├── FrmXmlEditor.cs │ └── FrmXmlEditor.resx ├── FrmCredits.Designer.cs ├── FrmCredits.cs ├── FrmCredits.resx ├── FrmLevNameOpen.Designer.cs ├── FrmLevNameOpen.cs ├── FrmLevNameOpen.resx ├── LevelObj.cs ├── ModelDumper.Designer.cs ├── ModelDumper.cs ├── ModelDumper.resx ├── ObjectDB │ ├── GameObjectDumper.Designer.cs │ ├── GameObjectDumper.cs │ ├── GameObjectDumper.resx │ ├── ObjectDBView.Designer.cs │ ├── ObjectDBView.cs │ ├── ObjectDBView.resx │ ├── ObjectDbEditor.Designer.cs │ ├── ObjectDbEditor.cs │ └── ObjectDbEditor.resx ├── Ohana3DS_stuff │ ├── CGFX.cs │ ├── IOUtils.cs │ ├── MeshUtils.cs │ ├── OBJ.cs │ ├── PICACommand.cs │ ├── PICACommandReader.cs │ ├── PICACommandWriter.cs │ ├── RenderBase.cs │ ├── TextureCodec.cs │ └── TextureUtils.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── BCSTMtools.zip │ └── BaseModels.zip ├── The4Dimension.csproj └── packages.config └── guide.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/.gitignore -------------------------------------------------------------------------------- /CollisionsMng/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/CollisionsMng/App.config -------------------------------------------------------------------------------- /CollisionsMng/Collisions codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/CollisionsMng/Collisions codes.txt -------------------------------------------------------------------------------- /CollisionsMng/CollisionsMng.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/CollisionsMng/CollisionsMng.csproj -------------------------------------------------------------------------------- /CollisionsMng/KCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/CollisionsMng/KCL.cs -------------------------------------------------------------------------------- /CollisionsMng/Pa_format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/CollisionsMng/Pa_format.cs -------------------------------------------------------------------------------- /CollisionsMng/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/CollisionsMng/Program.cs -------------------------------------------------------------------------------- /CollisionsMng/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/CollisionsMng/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ModelViewer/ModelViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/ModelViewer.csproj -------------------------------------------------------------------------------- /ModelViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ModelViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ModelViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /ModelViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ModelViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /ModelViewer/UserControl1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/UserControl1.xaml -------------------------------------------------------------------------------- /ModelViewer/UserControl1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/UserControl1.xaml.cs -------------------------------------------------------------------------------- /ModelViewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ModelViewer/packages.config -------------------------------------------------------------------------------- /ObjectNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ObjectNotes.txt -------------------------------------------------------------------------------- /ObjectsDb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/ObjectsDb.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TheFourthDimension 2 | A super mario 3d land level editor 3 | -------------------------------------------------------------------------------- /The4Dimension.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension.sln -------------------------------------------------------------------------------- /The4Dimension/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/App.config -------------------------------------------------------------------------------- /The4Dimension/BgmEditors/FrmBgmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BgmEditors/FrmBgmMain.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/BgmEditors/FrmBgmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BgmEditors/FrmBgmMain.cs -------------------------------------------------------------------------------- /The4Dimension/BgmEditors/FrmBgmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BgmEditors/FrmBgmMain.resx -------------------------------------------------------------------------------- /The4Dimension/BgmEditors/FrmMakeBcstm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BgmEditors/FrmMakeBcstm.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/BgmEditors/FrmMakeBcstm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BgmEditors/FrmMakeBcstm.cs -------------------------------------------------------------------------------- /The4Dimension/BgmEditors/FrmMakeBcstm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BgmEditors/FrmMakeBcstm.resx -------------------------------------------------------------------------------- /The4Dimension/BgmEditors/TempoWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BgmEditors/TempoWrite.cs -------------------------------------------------------------------------------- /The4Dimension/BymlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BymlConverter.cs -------------------------------------------------------------------------------- /The4Dimension/BymlFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/BymlFormat.cs -------------------------------------------------------------------------------- /The4Dimension/CustomClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/CustomClasses.cs -------------------------------------------------------------------------------- /The4Dimension/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Form1.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Form1.cs -------------------------------------------------------------------------------- /The4Dimension/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Form1.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/Frm2DSection.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/Frm2DSection.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/Frm2DSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/Frm2DSection.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/Frm2DSection.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/Frm2DSection.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddCameraSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddCameraSettings.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddCameraSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddCameraSettings.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddCameraSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddCameraSettings.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddObj.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddObj.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddObj.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddObj.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddObj.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddValue.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddValue.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddValue.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmAddValue.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmAddValue.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmCCNTEdit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmCCNTEdit.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmCCNTEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmCCNTEdit.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmCCNTEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmCCNTEdit.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmObjEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmObjEditor.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmObjEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmObjEditor.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmObjEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmObjEditor.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmObjImport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmObjImport.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmObjImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmObjImport.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmObjImport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmObjImport.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmRailPointEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmRailPointEditor.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmRailPointEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmRailPointEditor.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmRailPointEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmRailPointEditor.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmSearchResults.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmSearchResults.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmSearchResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmSearchResults.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmSearchResults.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmSearchResults.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmSearchValInput.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmSearchValInput.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmSearchValInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmSearchValInput.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmSearchValInput.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmSearchValInput.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmStringInput.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmStringInput.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmStringInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmStringInput.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmStringInput.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmStringInput.resx -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmXmlEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmXmlEditor.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmXmlEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmXmlEditor.cs -------------------------------------------------------------------------------- /The4Dimension/FormEditors/FrmXmlEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FormEditors/FrmXmlEditor.resx -------------------------------------------------------------------------------- /The4Dimension/FrmCredits.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FrmCredits.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FrmCredits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FrmCredits.cs -------------------------------------------------------------------------------- /The4Dimension/FrmCredits.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FrmCredits.resx -------------------------------------------------------------------------------- /The4Dimension/FrmLevNameOpen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FrmLevNameOpen.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/FrmLevNameOpen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FrmLevNameOpen.cs -------------------------------------------------------------------------------- /The4Dimension/FrmLevNameOpen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/FrmLevNameOpen.resx -------------------------------------------------------------------------------- /The4Dimension/LevelObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/LevelObj.cs -------------------------------------------------------------------------------- /The4Dimension/ModelDumper.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ModelDumper.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/ModelDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ModelDumper.cs -------------------------------------------------------------------------------- /The4Dimension/ModelDumper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ModelDumper.resx -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/GameObjectDumper.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/GameObjectDumper.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/GameObjectDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/GameObjectDumper.cs -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/GameObjectDumper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/GameObjectDumper.resx -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/ObjectDBView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/ObjectDBView.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/ObjectDBView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/ObjectDBView.cs -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/ObjectDBView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/ObjectDBView.resx -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/ObjectDbEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/ObjectDbEditor.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/ObjectDbEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/ObjectDbEditor.cs -------------------------------------------------------------------------------- /The4Dimension/ObjectDB/ObjectDbEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/ObjectDB/ObjectDbEditor.resx -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/CGFX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/CGFX.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/IOUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/IOUtils.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/MeshUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/MeshUtils.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/OBJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/OBJ.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/PICACommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/PICACommand.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/PICACommandReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/PICACommandReader.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/PICACommandWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/PICACommandWriter.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/RenderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/RenderBase.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/TextureCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/TextureCodec.cs -------------------------------------------------------------------------------- /The4Dimension/Ohana3DS_stuff/TextureUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Ohana3DS_stuff/TextureUtils.cs -------------------------------------------------------------------------------- /The4Dimension/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Program.cs -------------------------------------------------------------------------------- /The4Dimension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /The4Dimension/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Properties/Resources.resx -------------------------------------------------------------------------------- /The4Dimension/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /The4Dimension/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Properties/Settings.settings -------------------------------------------------------------------------------- /The4Dimension/Resources/BCSTMtools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Resources/BCSTMtools.zip -------------------------------------------------------------------------------- /The4Dimension/Resources/BaseModels.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/Resources/BaseModels.zip -------------------------------------------------------------------------------- /The4Dimension/The4Dimension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/The4Dimension.csproj -------------------------------------------------------------------------------- /The4Dimension/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/The4Dimension/packages.config -------------------------------------------------------------------------------- /guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/TheFourthDimension/HEAD/guide.md --------------------------------------------------------------------------------