├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Forge Updater ├── App.config ├── Forge Updater.csproj ├── Octokit.dll ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── License.txt ├── ReadMe.md ├── Smash Forge.sln └── Smash Forge ├── ACMDScript.cs ├── Animation.cs ├── App.config ├── CharacterParamManager.cs ├── DiscordSettings.cs ├── Filetypes ├── ATKD.cs ├── Animation │ ├── ANIM.cs │ ├── BCHan.cs │ ├── CHR0.cs │ ├── CMR0.cs │ ├── LIGH.cs │ ├── MTA.cs │ ├── OMO.cs │ ├── OMOOld.cs │ └── PATH.cs ├── Application │ ├── Config.cs │ ├── MaterialXML.cs │ └── MaterialXMLBatchExport.cs ├── BCH │ ├── BCH_Animation.cs │ ├── BCH_Main.cs │ ├── BCH_Model.cs │ ├── BCH_Texture.cs │ ├── PatriciaTree.cs │ └── _3DSGPU.cs ├── BFRES │ ├── BFRES_Main.cs │ ├── BfresRenderMesh.cs │ ├── BfresXML.cs │ ├── DisplayVertex.cs │ ├── Switch │ │ ├── BFRES_NSW.cs │ │ ├── BNTX.cs │ │ ├── DDS_Decompress.cs │ │ ├── FMAA.cs │ │ ├── FSHA.cs │ │ ├── FSKA.cs │ │ ├── FVIS.cs │ │ └── TegraX1Swizzle.cs │ └── WiiU │ │ ├── BFRES_WiiU.cs │ │ ├── FSHU.cs │ │ ├── FTEX.cs │ │ └── FTXP.cs ├── BYAML │ ├── BYAML.cs │ └── LIB │ │ ├── ByamlException.cs │ │ ├── ByamlNodeType.cs │ │ ├── ByamlPathPoint.cs │ │ ├── Dynamic │ │ └── ByamlFile.cs │ │ ├── IO │ │ ├── BinaryDataReaderExtensions.cs │ │ └── BinaryDataWriterExtensions.cs │ │ └── Serialization │ │ ├── ByamlMemberAttribute.cs │ │ ├── ByamlMemberInfo.cs │ │ ├── ByamlObjectAttribute.cs │ │ ├── ByamlObjectInfo.cs │ │ ├── ByamlSerializer.cs │ │ ├── ByamlSerializerSettings.cs │ │ ├── IByamlSerializable.cs │ │ └── TypeInfoExtensions.cs ├── DRP.cs ├── KCL │ ├── KCL.cs │ ├── KCL.zip │ ├── Library │ │ ├── CourseOctreeNode.cs │ │ ├── KclFace.cs │ │ ├── KclFile.cs │ │ ├── KclModel.cs │ │ ├── ModelOctreeNode.cs │ │ └── OctreeNodeBase.cs │ └── Syroot.NintenTools.MarioKart8.dll ├── LVD.cs ├── Melee │ ├── DAT.cs │ ├── DAT_Animation.cs │ ├── LibWii │ │ ├── Shared.cs │ │ └── TLP.cs │ ├── MeleeData.cs │ ├── MeleeDataObjectNode.cs │ ├── MeleeFighterDataNode.cs │ ├── MeleeJointAnimationNode.cs │ ├── MeleeJointNode.cs │ ├── MeleeMapHeadNode.cs │ ├── MeleeMaterialAnimationNode.cs │ ├── MeleeNode.cs │ ├── MeleeRootNode.cs │ ├── Rendering │ │ ├── MeleeDatToOpenGL.cs │ │ ├── MeleeMesh.cs │ │ └── MeleeRenderTexture.cs │ ├── TriangleTools.cs │ └── Utils │ │ ├── DatMaterialXml.cs │ │ └── MeleeDatEnums.cs ├── Models │ ├── BCH.cs │ ├── Collada.cs │ ├── IBoundableModel.cs │ ├── JTB.cs │ ├── MBN.cs │ ├── MDL0Bones.cs │ ├── MOI.cs │ ├── ModelContainer.cs │ ├── Nuds │ │ ├── DisplayVertex.cs │ │ ├── MatTexture.cs │ │ ├── Material.cs │ │ ├── Mesh.cs │ │ ├── NUD.cs │ │ ├── NudEnums.cs │ │ ├── NudRenderMesh.cs │ │ ├── NudUniforms.cs │ │ ├── Polygon.cs │ │ └── Vertex.cs │ ├── OBJ.cs │ ├── Skapon.cs │ └── VBN.cs ├── PAC.cs ├── Params │ ├── LightSetParam.cs │ ├── MaterialParamTools.cs │ └── ParamTools.cs ├── SARC.cs ├── SMD.cs ├── Sounds │ ├── NUS3BANK.cs │ ├── SQB.cs │ ├── VGMStreamNative.cs │ └── WAVE.cs ├── Textures │ ├── 3DSTex.cs │ ├── DDS.cs │ ├── GTX.cs │ ├── NUT.cs │ ├── Pixel.cs │ └── RG_ETC1.cs ├── UI │ ├── LM.cs │ └── Texlist.cs └── Yaz0.cs ├── GUI ├── About.Designer.cs ├── About.cs ├── About.resx ├── BFRES_Loaders │ ├── OdysseyCostumeLoader.Designer.cs │ ├── OdysseyCostumeLoader.cs │ └── OdysseyCostumeLoader.resx ├── Controls │ ├── MeshMover.Designer.cs │ ├── MeshMover.cs │ ├── MeshMover.resx │ ├── TransformTool.cs │ ├── VertexTool.Designer.cs │ ├── VertexTool.cs │ └── VertexTool.resx ├── EditorBase.cs ├── EditorBase.resx ├── Editors │ ├── 3DS │ │ ├── 3DSTexEditor.Designer.cs │ │ ├── 3DSTexEditor.cs │ │ └── 3DSTexEditor.resx │ ├── ACMDEditor.Designer.cs │ ├── ACMDEditor.cs │ ├── ACMDEditor.resx │ ├── ACMDPreviewEditor.Designer.cs │ ├── ACMDPreviewEditor.cs │ ├── ACMDPreviewEditor.resx │ ├── ATKD_Editor.Designer.cs │ ├── ATKD_Editor.cs │ ├── ATKD_Editor.resx │ ├── AnimList.Designer.cs │ ├── AnimList.cs │ ├── AnimList.resx │ ├── AnimTrack.Designer.cs │ ├── AnimTrack.cs │ ├── AnimTrack.resx │ ├── BFRES Editors │ │ ├── BNTXMaterialTextureEditor.Designer.cs │ │ ├── BNTXMaterialTextureEditor.cs │ │ ├── BNTXMaterialTextureEditor.resx │ │ ├── BNTXMaterialTextureEditor.zip │ │ ├── BfresMaterialEditor.Designer.cs │ │ ├── BfresMaterialEditor.cs │ │ ├── BfresMaterialEditor.resx │ │ ├── BfresMeshEditor.Designer.cs │ │ ├── BfresMeshEditor.cs │ │ ├── BfresMeshEditor.resx │ │ ├── BntxTextureList.Designer.cs │ │ ├── BntxTextureList.cs │ │ ├── BntxTextureList.resx │ │ ├── BufferList.Designer.cs │ │ ├── BufferList.cs │ │ ├── BufferList.resx │ │ ├── FSKLTree.Designer.cs │ │ ├── FSKLTree.cs │ │ ├── FSKLTree.resx │ │ ├── ImportTexture.Designer.cs │ │ ├── ImportTexture.cs │ │ ├── ImportTexture.resx │ │ ├── MeshBoneList.Designer.cs │ │ ├── MeshBoneList.cs │ │ └── MeshBoneList.resx │ ├── BNTXEditor.Designer.cs │ ├── BNTXEditor.cs │ ├── BNTXEditor.resx │ ├── BYAML Editor │ │ ├── BYAMLEditor.Designer.cs │ │ ├── BYAMLEditor.cs │ │ ├── BYAMLEditor.resx │ │ ├── BYAMLList.Designer.cs │ │ ├── BYAMLList.cs │ │ └── BYAMLList.resx │ ├── BoneButton.Designer.cs │ ├── BoneButton.cs │ ├── BoneTree.Designer.cs │ ├── BoneTree.cs │ ├── BoneTree.resx │ ├── DatStageList.Designer.cs │ ├── DatStageList.cs │ ├── DatStageList.resx │ ├── DatTexEditor.Designer.cs │ ├── DatTexEditor.cs │ ├── DatTexEditor.resx │ ├── DatTreeView.Designer.cs │ ├── DatTreeView.cs │ ├── DatTreeView.resx │ ├── HitboxList.Designer.cs │ ├── HitboxList.cs │ ├── HitboxList.resx │ ├── HurtboxList.Designer.cs │ ├── HurtboxList.cs │ ├── HurtboxList.resx │ ├── LM Editor │ │ ├── LMList.Designer.cs │ │ ├── LMList.cs │ │ ├── LMList.resx │ │ ├── LMUVViewer.cs │ │ ├── LMUVViewer.designer.cs │ │ └── LMUVViewer.resx │ ├── LVD Editor │ │ ├── LVDEditor.Designer.cs │ │ ├── LVDEditor.cs │ │ ├── LVDEditor.resx │ │ ├── LVDList.Designer.cs │ │ ├── LVDList.cs │ │ └── LVDList.resx │ ├── LightSetEditor.Designer.cs │ ├── LightSetEditor.cs │ ├── LightSetEditor.resx │ ├── MOIEditor.Designer.cs │ ├── MOIEditor.cs │ ├── MOIEditor.resx │ ├── MTA Editor GUI │ │ ├── ColorList.Designer.cs │ │ ├── ColorList.cs │ │ ├── ColorList.resx │ │ ├── MTAEditorGUI.Designer.cs │ │ ├── MTAEditorGUI.cs │ │ ├── MTAEditorGUI.resx │ │ ├── MatHeaderBox.Designer.cs │ │ ├── MatHeaderBox.cs │ │ ├── MatHeaderBox.resx │ │ ├── MatPropList.Designer.cs │ │ ├── MatPropList.cs │ │ ├── MatPropList.resx │ │ └── jam's-internet-doesn't-like-this.txt │ ├── MTAEditor.Designer.cs │ ├── MTAEditor.cs │ ├── MTAEditor.resx │ ├── MeshList.Designer.cs │ ├── MeshList.cs │ ├── MeshList.resx │ ├── NUDMaterialEditor.Designer.cs │ ├── NUDMaterialEditor.cs │ ├── NUDMaterialEditor.resx │ ├── NUS3BANKEditor.Designer.cs │ ├── NUS3BANKEditor.cs │ ├── NUS3BANKEditor.resx │ ├── NUTEditor.Designer.cs │ ├── NUTEditor.cs │ ├── NUTEditor.resx │ ├── PARAMEditor.Designer.cs │ ├── PARAMEditor.cs │ ├── PARAMEditor.resx │ ├── PathBinEditor.Designer.cs │ ├── PathBinEditor.cs │ ├── PathBinEditor.resx │ ├── Pokken │ │ ├── DRPViewer.Designer.cs │ │ ├── DRPViewer.cs │ │ └── DRPViewer.resx │ ├── ProjectTree.Designer.cs │ ├── ProjectTree.cs │ ├── ProjectTree.resx │ ├── SwagEditor.Designer.cs │ ├── SwagEditor.cs │ ├── SwagEditor.resx │ ├── UIPreview.Designer.cs │ ├── UIPreview.cs │ ├── UIPreview.resx │ ├── VariableList.Designer.cs │ ├── VariableList.cs │ └── VariableList.resx ├── FolderSelectDialog.cs ├── FolderSelectDialog.designer.cs ├── Form1.resx ├── FormBase.cs ├── GIFEncoder │ ├── AnimatedGifEncoder.cs │ ├── GIFProgress.Designer.cs │ ├── GIFProgress.cs │ ├── GIFProgress.resx │ ├── GIFSettings.Designer.cs │ ├── GIFSettings.cs │ ├── GIFSettings.resx │ ├── LZWEncoder.cs │ ├── NeuQuant.cs │ └── UnsafeBuffer.cs ├── GuiTools.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Melee │ ├── DOBJEditor.Designer.cs │ ├── DOBJEditor.cs │ ├── DOBJEditor.resx │ ├── DOBJImportSettings.Designer.cs │ ├── DOBJImportSettings.cs │ ├── DOBJImportSettings.resx │ ├── MeleeCMDEditor.Designer.cs │ ├── MeleeCMDEditor.cs │ ├── MeleeCMDEditor.resx │ ├── MeleeTextureSelector.Designer.cs │ ├── MeleeTextureSelector.cs │ └── MeleeTextureSelector.resx ├── Menus │ ├── AddBone.Designer.cs │ ├── AddBone.cs │ ├── AddBone.resx │ ├── BoneRiggingSelector.Designer.cs │ ├── BoneRiggingSelector.cs │ ├── BoneRiggingSelector.resx │ ├── CameraSettings.Designer.cs │ ├── CameraSettings.cs │ ├── CameraSettings.resx │ ├── ColorEditor.Designer.cs │ ├── ColorEditor.cs │ ├── ColorEditor.resx │ ├── DAEImportSettings.Designer.cs │ ├── DAEImportSettings.cs │ ├── DAEImportSettings.resx │ ├── MakeMetal.Designer.cs │ ├── MakeMetal.cs │ ├── MakeMetal.resx │ ├── MaterialSelector.Designer.cs │ ├── MaterialSelector.cs │ ├── MaterialSelector.resx │ ├── OdysseyCostumeSelector.Designer.cs │ ├── OdysseyCostumeSelector.cs │ ├── OdysseyCostumeSelector.resx │ ├── PolygonFormatEditor.Designer.cs │ ├── PolygonFormatEditor.cs │ ├── PolygonFormatEditor.resx │ ├── PolygonSelector.Designer.cs │ ├── PolygonSelector.cs │ ├── PolygonSelector.resx │ ├── RenderSettingsMenu.Designer.cs │ ├── RenderSettingsMenu.cs │ ├── RenderSettingsMenu.resx │ ├── RomInjector.Designer.cs │ ├── RomInjector.cs │ ├── RomInjector.resx │ ├── TexIDSelector.Designer.cs │ ├── TexIDSelector.cs │ ├── TexIDSelector.resx │ ├── TextureSelector.Designer.cs │ ├── TextureSelector.cs │ ├── TextureSelector.resx │ ├── UvViewer.Designer.cs │ ├── UvViewer.cs │ ├── UvViewer.resx │ ├── XmbViewer.Designer.cs │ ├── XmbViewer.cs │ └── XmbViewer.resx ├── ModelViewport.Designer.cs ├── ModelViewport.cs ├── ModelViewport.resx ├── Nodes │ ├── AnimationGroupNode.cs │ ├── BaseNode.cs │ ├── ModelNode.cs │ └── ProjectNode.cs ├── ProgressAlert.Designer.cs ├── ProgressAlert.cs ├── ProgressAlert.resx ├── SettingsDialog.cs └── SettingsDialog.resx ├── IO ├── FileAssociation.cs ├── FileBase.cs ├── FileData.cs └── FileOutput.cs ├── Images ├── Thumbs.db ├── WorspaceIcon.png ├── document-icon.png ├── fitproj.png └── thum-icon-folder.png ├── MovesetManager.cs ├── Preview Images ├── Character.png ├── Dummy.png └── Stage.png ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Rendering ├── BatchRendering.cs ├── Cameras │ ├── ForgeCamera.cs │ ├── ForgeOrthoCamera.cs │ └── ForgePerspCamera.cs ├── Drawing │ ├── FloorDrawing.cs │ ├── MaterialPreviewRendering.cs │ ├── NudMatSphereDrawing.cs │ ├── ScreenDrawing.cs │ └── TextureToBitmap.cs ├── GenericMesh │ └── Mesh3D.cs ├── Lights │ ├── AreaLight.cs │ ├── DirectionalLight.cs │ ├── HemisphereFresnel.cs │ ├── LightColor.cs │ ├── LightMap.cs │ └── LightTools.cs ├── OpenTKSharedResources.cs ├── Ray.cs ├── RenderTools.cs ├── ShaderTools.cs └── ShapeDrawing.cs ├── Resources ├── 10080000.png ├── 10101000.png ├── 10102000.png ├── DefaultTexture.png ├── Flat Folder icon.png ├── ForgeBack.png ├── Resources.Designer.cs ├── Resources.resx ├── Thumbs.db ├── UVPattern.png ├── _10040000.png ├── _10040001.png ├── _10100000.png ├── big_icon_anim.png ├── big_sexy_green_down_arrow.png ├── bitan.png ├── boneWeightGradient.png ├── boneWeightGradient2.png ├── defaultDif.png ├── diffuseSDR.dds ├── forge.ico ├── forge2.ico ├── forge2Old.ico ├── icon_anim.png ├── icon_bfres.bmp ├── icon_bone.png ├── icon_dat.png ├── icon_datold.png ├── icon_image.png ├── icon_info.png ├── icon_mesh.png ├── icon_model.png ├── icon_model1.png ├── icon_model2.png ├── icon_number.png ├── icon_polygon.png ├── icon_skeleton.png ├── node_file.png ├── node_nud.png ├── node_nut.png ├── node_vbn.png ├── nrm.png ├── nrmMap.png ├── sexy_green_down_arrow.png ├── specularSDR.dds ├── strip_camreset.png ├── strip_camsettings.png ├── strip_gif.png ├── strip_pos.png ├── strip_render.png ├── strip_rot.png ├── strip_sca.png ├── tan.png └── uv.png ├── Runtime.cs ├── Shader ├── 3ds │ ├── MBN.frag │ └── MBN.vert ├── Bfres │ ├── BFRES.frag │ ├── BFRES.vert │ ├── BFRES_Botw.frag │ ├── BFRES_Debug.frag │ ├── BFRES_PBR.frag │ └── BFRES_utility.frag ├── ForgeMesh.frag ├── ForgeMesh.vert ├── KCL.frag ├── KCL.vert ├── Melee │ ├── DAT.frag │ ├── DAT.vert │ ├── DatDebug.frag │ └── MeleeUtils.frag ├── Nud │ ├── Bayo.frag │ ├── EdgeDistance.geom │ ├── NUD.frag │ ├── NUD.geom │ ├── NUD.vert │ ├── NudDebug.frag │ ├── NudSphere.frag │ ├── NudSphere.vert │ ├── SmashShader.frag │ ├── StageLighting.frag │ ├── UV.frag │ ├── UV.geom │ └── UV.vert ├── Point.frag ├── Point.vert ├── PostProcessing │ ├── Gradient.frag │ ├── ScreenQuad.frag │ └── ScreenTexCoordMain.vert ├── Shadow.frag ├── Shadow.vert ├── SolidColor3D.frag ├── SolidColor3D.vert ├── Texture.frag └── Utility │ ├── Utility.frag │ └── Wireframe.frag ├── SkelAnimation.cs ├── Smash Forge.csproj ├── Updates.cs ├── WorkspaceManager.cs ├── app.manifest ├── characterSpecialBubbles.csv ├── hashTable.csv ├── lib ├── DiscordController.cs ├── DiscordRpc.cs ├── FITC.exe ├── FITD.exe ├── MeleeLib.dll ├── Newtonsoft.Json.dll ├── NintacoAPI.cs ├── Octokit.dll ├── OpenTK.GLControl.dll ├── OpenTK.dll ├── RG_ETC1.dll ├── SALT.dll ├── SFGenericModel.dll ├── SFGenericModel.xml ├── SFGraphics.Controls.dll ├── SFGraphics.Controls.xml ├── SFGraphics.Utils.dll ├── SFGraphics.Utils.xml ├── SFGraphics.dll ├── SFGraphics.xml ├── SFShaderLoader.dll ├── SFShaderLoader.xml ├── SFShapes.dll ├── SFShapes.xml ├── Skapon.zip ├── Syroot.BinaryData.dll ├── Syroot.Maths.dll ├── Syroot.NintenTools.Bfres.dll ├── Syroot.NintenTools.MarioKart8.dll ├── Syroot.NintenTools.NSW.Bfres.dll ├── Syroot.NintenTools.Yaz0.dll ├── WeifenLuo.WinFormsUI.Docking.dll ├── discord-rpc.dll ├── libg7221_decode.dll ├── libmpg123-0.dll ├── libvgmstream.dll └── libvorbis.dll ├── materials ├── Character Mats │ ├── Mat01 [Beginners Material].nmt │ ├── Mat02 [Standard Nrm Map].nmt │ ├── Mat03 [Skin Ramp].nmt │ ├── Mat04 [Metal NUD].nmt │ ├── Mat05 [Metal Ganon Armor].nmt │ ├── Mat06 [Metal Reflectivity Map].nmt │ ├── Mat07 [Cel-Shade].nmt │ ├── Mat08 [Material Colored Hair].nmt │ ├── Mat09 [Satin Material].nmt │ ├── Mat10 [Smash64 Look].nmt │ ├── Mat11 [JoeTE Glow].nmt │ └── Mat12 [Bayo Hair Spec Ramp].nmt └── Stage Mats │ ├── Mat01 [Diffuse].nmt │ ├── Mat02 [Diff+Color-Light].nmt │ ├── Mat03 [Diff+LightMap].nmt │ ├── Mat04 [DiffSpec+Reflection].nmt │ ├── Mat05 [Diff+Norm].nmt │ ├── Mat06 [Diff+Cube].nmt │ ├── Mat07 [Diff+Cube+Light].nmt │ ├── Mat08 [Diff+Cube+Norm+CharReflection].nmt │ ├── Mat09 [Diffuse+DiffuseBlend].nmt │ ├── Mat10 [3-UV Diffuse].nmt │ ├── Mat11 [Diff+Cube+Color+Light].nmt │ ├── Mat12 [Diff+Cube+Norm+CharShadow].nmt │ ├── Mat13 [Nothing but CharShadow].nmt │ ├── Mat14 [Diff+Cube+Fresnel+Light].nmt │ ├── Mat15 [Diff+Fresnel].nmt │ ├── Mat16 [DiffSpec+Reflection+Masking].nmt │ ├── Mat17 [3-UV Diffuse+Cubemap].nmt │ ├── Mat18 [Diff+Color+Light].nmt │ ├── Mat19 [Diff+Cube+Fresnel].nmt │ ├── Mat20 [DiffSpec+Cube+Fresnel].nmt │ ├── Mat21 [DiffSpec+Cube+SpecColor].nmt │ └── Mat22 [Diff+Ramp].nmt └── param_labels ├── CollisionAttribute_cafe.ini ├── allstar_param_cafe.ini ├── audience_ouen_param.ini ├── battle_object_param.ini ├── crazy_side_param.ini ├── equipment_param.ini ├── event_param.ini ├── fighter_param.ini ├── fighter_param_common.ini ├── fighter_param_vl_lizardon.ini ├── fighter_param_vl_luigi.ini ├── fighter_param_vl_mario.ini ├── fighter_param_vl_pikachu.ini ├── fighter_param_vl_sheik.ini ├── fighter_param_vl_xxx.ini ├── fighter_param_vl_zelda.ini ├── global_parameter_menu.ini ├── item_assist_gen_param.ini ├── item_common_param.ini ├── item_gen_param.ini ├── item_pokemon_gen_param.ini ├── item_stage_gen_param.ini ├── kumite_param_cafe.ini ├── light_set_param.ini ├── material_params.ini ├── render_param.ini ├── simple_cafe_param.ini ├── simple_character_db_cafe.ini ├── sq_vs_melee_data.ini ├── stage_param.ini ├── stdat_Cave.ini ├── stdat_DKReturns.ini ├── stdat_DxOnett.ini ├── stdat_End_f.ini ├── stdat_Gw3.ini ├── stdat_Hyrule64_f.ini ├── stdat_Kalos.ini ├── stdat_Metroid.ini ├── stdat_PeachCastle64_f.ini ├── stdat_PikminU.ini ├── stdat_Pupupuland64_f.ini ├── stdat_StreetFighter_f.ini ├── stdat_Windyhill.ini ├── stdat_XDonkey.ini ├── stdat_XEmblem.ini ├── stdat_XMansion.ini ├── stdat_XOldin.ini ├── stdat_XPalutena.ini ├── stdat_XPirates_f.ini ├── stdat_YoshiU.ini ├── ui_button_sequence.ini ├── ui_category_db.ini ├── ui_challenger_battle_db_cafe.ini ├── ui_character_db.ini ├── ui_cleargetter_db.ini ├── ui_figure_db.ini ├── ui_item_switch_db.ini ├── ui_movie_db.ini ├── ui_skill_db.ini ├── ui_soft_db.ini ├── ui_sound_call_voice_db.ini ├── ui_sound_db.ini ├── ui_stage_db.ini ├── ui_tips_db.ini ├── unlock_condition_of_fighters.ini └── worldsmash_param.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/.gitignore -------------------------------------------------------------------------------- /Forge Updater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Forge Updater/App.config -------------------------------------------------------------------------------- /Forge Updater/Forge Updater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Forge Updater/Forge Updater.csproj -------------------------------------------------------------------------------- /Forge Updater/Octokit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Forge Updater/Octokit.dll -------------------------------------------------------------------------------- /Forge Updater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Forge Updater/Program.cs -------------------------------------------------------------------------------- /Forge Updater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Forge Updater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/License.txt -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Smash Forge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge.sln -------------------------------------------------------------------------------- /Smash Forge/ACMDScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/ACMDScript.cs -------------------------------------------------------------------------------- /Smash Forge/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Animation.cs -------------------------------------------------------------------------------- /Smash Forge/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/App.config -------------------------------------------------------------------------------- /Smash Forge/CharacterParamManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/CharacterParamManager.cs -------------------------------------------------------------------------------- /Smash Forge/DiscordSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/DiscordSettings.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/ATKD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/ATKD.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/ANIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/ANIM.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/BCHan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/BCHan.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/CHR0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/CHR0.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/CMR0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/CMR0.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/LIGH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/LIGH.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/MTA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/MTA.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/OMO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/OMO.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/OMOOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/OMOOld.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Animation/PATH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Animation/PATH.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Application/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Application/Config.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Application/MaterialXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Application/MaterialXML.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Application/MaterialXMLBatchExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Application/MaterialXMLBatchExport.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BCH/BCH_Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BCH/BCH_Animation.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BCH/BCH_Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BCH/BCH_Main.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BCH/BCH_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BCH/BCH_Model.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BCH/BCH_Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BCH/BCH_Texture.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BCH/PatriciaTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BCH/PatriciaTree.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BCH/_3DSGPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BCH/_3DSGPU.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/BFRES_Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/BFRES_Main.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/BfresRenderMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/BfresRenderMesh.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/BfresXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/BfresXML.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/DisplayVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/DisplayVertex.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/BFRES_NSW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/BFRES_NSW.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/BNTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/BNTX.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/DDS_Decompress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/DDS_Decompress.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/FMAA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/FMAA.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/FSHA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/FSHA.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/FSKA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/FSKA.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/FVIS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/FVIS.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/Switch/TegraX1Swizzle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/Switch/TegraX1Swizzle.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/WiiU/BFRES_WiiU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/WiiU/BFRES_WiiU.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/WiiU/FSHU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/WiiU/FSHU.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/WiiU/FTEX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/WiiU/FTEX.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BFRES/WiiU/FTXP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BFRES/WiiU/FTXP.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/BYAML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/BYAML.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/ByamlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/ByamlException.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/ByamlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/ByamlNodeType.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/ByamlPathPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/ByamlPathPoint.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Dynamic/ByamlFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Dynamic/ByamlFile.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/IO/BinaryDataReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/IO/BinaryDataReaderExtensions.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/IO/BinaryDataWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/IO/BinaryDataWriterExtensions.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlMemberAttribute.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlMemberInfo.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlObjectAttribute.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlObjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlObjectInfo.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlSerializer.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlSerializerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/ByamlSerializerSettings.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/IByamlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/IByamlSerializable.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/BYAML/LIB/Serialization/TypeInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/BYAML/LIB/Serialization/TypeInfoExtensions.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/DRP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/DRP.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/KCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/KCL.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/KCL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/KCL.zip -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/Library/CourseOctreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/Library/CourseOctreeNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/Library/KclFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/Library/KclFace.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/Library/KclFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/Library/KclFile.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/Library/KclModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/Library/KclModel.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/Library/ModelOctreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/Library/ModelOctreeNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/Library/OctreeNodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/Library/OctreeNodeBase.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/KCL/Syroot.NintenTools.MarioKart8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/KCL/Syroot.NintenTools.MarioKart8.dll -------------------------------------------------------------------------------- /Smash Forge/Filetypes/LVD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/LVD.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/DAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/DAT.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/DAT_Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/DAT_Animation.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/LibWii/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/LibWii/Shared.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/LibWii/TLP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/LibWii/TLP.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeData.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeDataObjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeDataObjectNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeFighterDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeFighterDataNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeJointAnimationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeJointAnimationNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeJointNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeJointNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeMapHeadNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeMapHeadNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeMaterialAnimationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeMaterialAnimationNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/MeleeRootNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/MeleeRootNode.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/Rendering/MeleeDatToOpenGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/Rendering/MeleeDatToOpenGL.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/Rendering/MeleeMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/Rendering/MeleeMesh.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/Rendering/MeleeRenderTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/Rendering/MeleeRenderTexture.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/TriangleTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/TriangleTools.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/Utils/DatMaterialXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/Utils/DatMaterialXml.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Melee/Utils/MeleeDatEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Melee/Utils/MeleeDatEnums.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/BCH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/BCH.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Collada.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Collada.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/IBoundableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/IBoundableModel.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/JTB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/JTB.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/MBN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/MBN.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/MDL0Bones.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/MDL0Bones.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/MOI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/MOI.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/ModelContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/ModelContainer.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/DisplayVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/DisplayVertex.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/MatTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/MatTexture.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/Material.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/Mesh.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/NUD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/NUD.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/NudEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/NudEnums.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/NudRenderMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/NudRenderMesh.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/NudUniforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/NudUniforms.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/Polygon.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Nuds/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Nuds/Vertex.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/OBJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/OBJ.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/Skapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/Skapon.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Models/VBN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Models/VBN.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/PAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/PAC.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Params/LightSetParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Params/LightSetParam.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Params/MaterialParamTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Params/MaterialParamTools.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Params/ParamTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Params/ParamTools.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/SARC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/SARC.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/SMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/SMD.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Sounds/NUS3BANK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Sounds/NUS3BANK.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Sounds/SQB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Sounds/SQB.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Sounds/VGMStreamNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Sounds/VGMStreamNative.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Sounds/WAVE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Sounds/WAVE.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Textures/3DSTex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Textures/3DSTex.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Textures/DDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Textures/DDS.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Textures/GTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Textures/GTX.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Textures/NUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Textures/NUT.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Textures/Pixel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Textures/Pixel.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Textures/RG_ETC1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Textures/RG_ETC1.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/UI/LM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/UI/LM.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/UI/Texlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/UI/Texlist.cs -------------------------------------------------------------------------------- /Smash Forge/Filetypes/Yaz0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Filetypes/Yaz0.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/About.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/About.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/About.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/BFRES_Loaders/OdysseyCostumeLoader.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/BFRES_Loaders/OdysseyCostumeLoader.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/BFRES_Loaders/OdysseyCostumeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/BFRES_Loaders/OdysseyCostumeLoader.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/BFRES_Loaders/OdysseyCostumeLoader.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/BFRES_Loaders/OdysseyCostumeLoader.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Controls/MeshMover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Controls/MeshMover.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Controls/MeshMover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Controls/MeshMover.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Controls/MeshMover.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Controls/MeshMover.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Controls/TransformTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Controls/TransformTool.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Controls/VertexTool.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Controls/VertexTool.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Controls/VertexTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Controls/VertexTool.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Controls/VertexTool.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Controls/VertexTool.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/EditorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/EditorBase.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/EditorBase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/EditorBase.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/3DS/3DSTexEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/3DS/3DSTexEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/3DS/3DSTexEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/3DS/3DSTexEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/3DS/3DSTexEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/3DS/3DSTexEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ACMDEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ACMDEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ACMDEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ACMDEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ACMDEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ACMDEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ACMDPreviewEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ACMDPreviewEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ACMDPreviewEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ACMDPreviewEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ACMDPreviewEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ACMDPreviewEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ATKD_Editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ATKD_Editor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ATKD_Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ATKD_Editor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ATKD_Editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ATKD_Editor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/AnimList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/AnimList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/AnimList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/AnimList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/AnimList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/AnimList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/AnimTrack.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/AnimTrack.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/AnimTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/AnimTrack.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/AnimTrack.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/AnimTrack.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BNTXMaterialTextureEditor.zip -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BfresMaterialEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BfresMaterialEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BfresMaterialEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BfresMaterialEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BfresMaterialEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BfresMaterialEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BfresMeshEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BfresMeshEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BfresMeshEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BfresMeshEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BfresMeshEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BfresMeshEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BntxTextureList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BntxTextureList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BntxTextureList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BntxTextureList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BntxTextureList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BntxTextureList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BufferList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BufferList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BufferList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BufferList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/BufferList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/BufferList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/FSKLTree.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/FSKLTree.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/FSKLTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/FSKLTree.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/FSKLTree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/FSKLTree.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/ImportTexture.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/ImportTexture.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/ImportTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/ImportTexture.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/ImportTexture.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/ImportTexture.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/MeshBoneList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/MeshBoneList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/MeshBoneList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/MeshBoneList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BFRES Editors/MeshBoneList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BFRES Editors/MeshBoneList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BNTXEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BNTXEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BNTXEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BNTXEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BNTXEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BNTXEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BYAML Editor/BYAMLEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BYAML Editor/BYAMLEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BYAML Editor/BYAMLEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BYAML Editor/BYAMLEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BYAML Editor/BYAMLEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BYAML Editor/BYAMLEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BYAML Editor/BYAMLList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BYAML Editor/BYAMLList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BYAML Editor/BYAMLList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BYAML Editor/BYAMLList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BYAML Editor/BYAMLList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BYAML Editor/BYAMLList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BoneButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BoneButton.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BoneButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BoneButton.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BoneTree.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BoneTree.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BoneTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BoneTree.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/BoneTree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/BoneTree.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatStageList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatStageList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatStageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatStageList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatStageList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatStageList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatTexEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatTexEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatTexEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatTexEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatTexEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatTexEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatTreeView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatTreeView.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatTreeView.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/DatTreeView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/DatTreeView.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/HitboxList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/HitboxList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/HitboxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/HitboxList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/HitboxList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/HitboxList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/HurtboxList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/HurtboxList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/HurtboxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/HurtboxList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/HurtboxList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/HurtboxList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LM Editor/LMList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LM Editor/LMList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LM Editor/LMList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LM Editor/LMList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LM Editor/LMList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LM Editor/LMList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LM Editor/LMUVViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LM Editor/LMUVViewer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LM Editor/LMUVViewer.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LM Editor/LMUVViewer.designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LM Editor/LMUVViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LM Editor/LMUVViewer.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LVD Editor/LVDEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LVD Editor/LVDEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LVD Editor/LVDEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LVD Editor/LVDEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LVD Editor/LVDEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LVD Editor/LVDEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LVD Editor/LVDList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LVD Editor/LVDList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LVD Editor/LVDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LVD Editor/LVDList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LVD Editor/LVDList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LVD Editor/LVDList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LightSetEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LightSetEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LightSetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LightSetEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/LightSetEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/LightSetEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MOIEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MOIEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MOIEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MOIEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MOIEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MOIEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/ColorList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/ColorList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/ColorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/ColorList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/ColorList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/ColorList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MTAEditorGUI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MTAEditorGUI.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MTAEditorGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MTAEditorGUI.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MTAEditorGUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MTAEditorGUI.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MatHeaderBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MatHeaderBox.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MatHeaderBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MatHeaderBox.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MatHeaderBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MatHeaderBox.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MatPropList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MatPropList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MatPropList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MatPropList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/MatPropList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/MatPropList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTA Editor GUI/jam's-internet-doesn't-like-this.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTA Editor GUI/jam's-internet-doesn't-like-this.txt -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTAEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTAEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTAEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTAEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MTAEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MTAEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MeshList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MeshList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MeshList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MeshList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/MeshList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/MeshList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUDMaterialEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUDMaterialEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUDMaterialEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUDMaterialEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUDMaterialEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUDMaterialEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUS3BANKEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUS3BANKEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUS3BANKEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUS3BANKEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUS3BANKEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUS3BANKEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUTEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUTEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUTEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUTEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/NUTEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/NUTEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/PARAMEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/PARAMEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/PARAMEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/PARAMEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/PARAMEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/PARAMEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/PathBinEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/PathBinEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/PathBinEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/PathBinEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/PathBinEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/PathBinEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/Pokken/DRPViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/Pokken/DRPViewer.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/Pokken/DRPViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/Pokken/DRPViewer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/Pokken/DRPViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/Pokken/DRPViewer.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ProjectTree.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ProjectTree.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ProjectTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ProjectTree.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/ProjectTree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/ProjectTree.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/SwagEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/SwagEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/SwagEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/SwagEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/SwagEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/SwagEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/UIPreview.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/UIPreview.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/UIPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/UIPreview.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/UIPreview.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/UIPreview.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/VariableList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/VariableList.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/VariableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/VariableList.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Editors/VariableList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Editors/VariableList.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/FolderSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/FolderSelectDialog.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/FolderSelectDialog.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/FolderSelectDialog.designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Form1.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/FormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/FormBase.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/AnimatedGifEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/AnimatedGifEncoder.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/GIFProgress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/GIFProgress.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/GIFProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/GIFProgress.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/GIFProgress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/GIFProgress.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/GIFSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/GIFSettings.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/GIFSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/GIFSettings.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/GIFSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/GIFSettings.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/LZWEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/LZWEncoder.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/NeuQuant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/NeuQuant.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GIFEncoder/UnsafeBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GIFEncoder/UnsafeBuffer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/GuiTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/GuiTools.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/MainForm.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/MainForm.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/DOBJEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/DOBJEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/DOBJEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/DOBJEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/DOBJEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/DOBJEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/DOBJImportSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/DOBJImportSettings.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/DOBJImportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/DOBJImportSettings.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/DOBJImportSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/DOBJImportSettings.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/MeleeCMDEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/MeleeCMDEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/MeleeCMDEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/MeleeCMDEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/MeleeCMDEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/MeleeCMDEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/MeleeTextureSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/MeleeTextureSelector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/MeleeTextureSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/MeleeTextureSelector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Melee/MeleeTextureSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Melee/MeleeTextureSelector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/AddBone.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/AddBone.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/AddBone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/AddBone.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/AddBone.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/AddBone.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/BoneRiggingSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/BoneRiggingSelector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/BoneRiggingSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/BoneRiggingSelector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/BoneRiggingSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/BoneRiggingSelector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/CameraSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/CameraSettings.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/CameraSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/CameraSettings.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/CameraSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/CameraSettings.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/ColorEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/ColorEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/ColorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/ColorEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/ColorEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/ColorEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/DAEImportSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/DAEImportSettings.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/DAEImportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/DAEImportSettings.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/DAEImportSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/DAEImportSettings.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/MakeMetal.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/MakeMetal.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/MakeMetal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/MakeMetal.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/MakeMetal.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/MakeMetal.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/MaterialSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/MaterialSelector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/MaterialSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/MaterialSelector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/MaterialSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/MaterialSelector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/OdysseyCostumeSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/OdysseyCostumeSelector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/OdysseyCostumeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/OdysseyCostumeSelector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/OdysseyCostumeSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/OdysseyCostumeSelector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/PolygonFormatEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/PolygonFormatEditor.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/PolygonFormatEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/PolygonFormatEditor.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/PolygonFormatEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/PolygonFormatEditor.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/PolygonSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/PolygonSelector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/PolygonSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/PolygonSelector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/PolygonSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/PolygonSelector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/RenderSettingsMenu.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/RenderSettingsMenu.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/RenderSettingsMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/RenderSettingsMenu.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/RenderSettingsMenu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/RenderSettingsMenu.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/RomInjector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/RomInjector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/RomInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/RomInjector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/RomInjector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/RomInjector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/TexIDSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/TexIDSelector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/TexIDSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/TexIDSelector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/TexIDSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/TexIDSelector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/TextureSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/TextureSelector.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/TextureSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/TextureSelector.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/TextureSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/TextureSelector.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/UvViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/UvViewer.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/UvViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/UvViewer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/UvViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/UvViewer.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/XmbViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/XmbViewer.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/XmbViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/XmbViewer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Menus/XmbViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Menus/XmbViewer.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/ModelViewport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/ModelViewport.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/ModelViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/ModelViewport.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/ModelViewport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/ModelViewport.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/Nodes/AnimationGroupNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Nodes/AnimationGroupNode.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Nodes/BaseNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Nodes/BaseNode.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Nodes/ModelNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Nodes/ModelNode.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/Nodes/ProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/Nodes/ProjectNode.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/ProgressAlert.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/ProgressAlert.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/ProgressAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/ProgressAlert.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/ProgressAlert.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/ProgressAlert.resx -------------------------------------------------------------------------------- /Smash Forge/GUI/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/SettingsDialog.cs -------------------------------------------------------------------------------- /Smash Forge/GUI/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/GUI/SettingsDialog.resx -------------------------------------------------------------------------------- /Smash Forge/IO/FileAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/IO/FileAssociation.cs -------------------------------------------------------------------------------- /Smash Forge/IO/FileBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/IO/FileBase.cs -------------------------------------------------------------------------------- /Smash Forge/IO/FileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/IO/FileData.cs -------------------------------------------------------------------------------- /Smash Forge/IO/FileOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/IO/FileOutput.cs -------------------------------------------------------------------------------- /Smash Forge/Images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Images/Thumbs.db -------------------------------------------------------------------------------- /Smash Forge/Images/WorspaceIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Images/WorspaceIcon.png -------------------------------------------------------------------------------- /Smash Forge/Images/document-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Images/document-icon.png -------------------------------------------------------------------------------- /Smash Forge/Images/fitproj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Images/fitproj.png -------------------------------------------------------------------------------- /Smash Forge/Images/thum-icon-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Images/thum-icon-folder.png -------------------------------------------------------------------------------- /Smash Forge/MovesetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/MovesetManager.cs -------------------------------------------------------------------------------- /Smash Forge/Preview Images/Character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Preview Images/Character.png -------------------------------------------------------------------------------- /Smash Forge/Preview Images/Dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Preview Images/Dummy.png -------------------------------------------------------------------------------- /Smash Forge/Preview Images/Stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Preview Images/Stage.png -------------------------------------------------------------------------------- /Smash Forge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Program.cs -------------------------------------------------------------------------------- /Smash Forge/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Smash Forge/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Properties/Resources.resx -------------------------------------------------------------------------------- /Smash Forge/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Properties/Settings.settings -------------------------------------------------------------------------------- /Smash Forge/Rendering/BatchRendering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/BatchRendering.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Cameras/ForgeCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Cameras/ForgeCamera.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Cameras/ForgeOrthoCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Cameras/ForgeOrthoCamera.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Cameras/ForgePerspCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Cameras/ForgePerspCamera.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Drawing/FloorDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Drawing/FloorDrawing.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Drawing/MaterialPreviewRendering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Drawing/MaterialPreviewRendering.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Drawing/NudMatSphereDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Drawing/NudMatSphereDrawing.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Drawing/ScreenDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Drawing/ScreenDrawing.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Drawing/TextureToBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Drawing/TextureToBitmap.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/GenericMesh/Mesh3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/GenericMesh/Mesh3D.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Lights/AreaLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Lights/AreaLight.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Lights/DirectionalLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Lights/DirectionalLight.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Lights/HemisphereFresnel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Lights/HemisphereFresnel.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Lights/LightColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Lights/LightColor.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Lights/LightMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Lights/LightMap.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Lights/LightTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Lights/LightTools.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/OpenTKSharedResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/OpenTKSharedResources.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/Ray.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/RenderTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/RenderTools.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/ShaderTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/ShaderTools.cs -------------------------------------------------------------------------------- /Smash Forge/Rendering/ShapeDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Rendering/ShapeDrawing.cs -------------------------------------------------------------------------------- /Smash Forge/Resources/10080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/10080000.png -------------------------------------------------------------------------------- /Smash Forge/Resources/10101000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/10101000.png -------------------------------------------------------------------------------- /Smash Forge/Resources/10102000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/10102000.png -------------------------------------------------------------------------------- /Smash Forge/Resources/DefaultTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/DefaultTexture.png -------------------------------------------------------------------------------- /Smash Forge/Resources/Flat Folder icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/Flat Folder icon.png -------------------------------------------------------------------------------- /Smash Forge/Resources/ForgeBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/ForgeBack.png -------------------------------------------------------------------------------- /Smash Forge/Resources/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/Resources.Designer.cs -------------------------------------------------------------------------------- /Smash Forge/Resources/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/Resources.resx -------------------------------------------------------------------------------- /Smash Forge/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/Thumbs.db -------------------------------------------------------------------------------- /Smash Forge/Resources/UVPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/UVPattern.png -------------------------------------------------------------------------------- /Smash Forge/Resources/_10040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/_10040000.png -------------------------------------------------------------------------------- /Smash Forge/Resources/_10040001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/_10040001.png -------------------------------------------------------------------------------- /Smash Forge/Resources/_10100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/_10100000.png -------------------------------------------------------------------------------- /Smash Forge/Resources/big_icon_anim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/big_icon_anim.png -------------------------------------------------------------------------------- /Smash Forge/Resources/big_sexy_green_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/big_sexy_green_down_arrow.png -------------------------------------------------------------------------------- /Smash Forge/Resources/bitan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/bitan.png -------------------------------------------------------------------------------- /Smash Forge/Resources/boneWeightGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/boneWeightGradient.png -------------------------------------------------------------------------------- /Smash Forge/Resources/boneWeightGradient2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/boneWeightGradient2.png -------------------------------------------------------------------------------- /Smash Forge/Resources/defaultDif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/defaultDif.png -------------------------------------------------------------------------------- /Smash Forge/Resources/diffuseSDR.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/diffuseSDR.dds -------------------------------------------------------------------------------- /Smash Forge/Resources/forge.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/forge.ico -------------------------------------------------------------------------------- /Smash Forge/Resources/forge2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/forge2.ico -------------------------------------------------------------------------------- /Smash Forge/Resources/forge2Old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/forge2Old.ico -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_anim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_anim.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_bfres.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_bfres.bmp -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_bone.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_dat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_dat.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_datold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_datold.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_image.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_info.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_mesh.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_model.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_model1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_model1.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_model2.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_number.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_polygon.png -------------------------------------------------------------------------------- /Smash Forge/Resources/icon_skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/icon_skeleton.png -------------------------------------------------------------------------------- /Smash Forge/Resources/node_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/node_file.png -------------------------------------------------------------------------------- /Smash Forge/Resources/node_nud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/node_nud.png -------------------------------------------------------------------------------- /Smash Forge/Resources/node_nut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/node_nut.png -------------------------------------------------------------------------------- /Smash Forge/Resources/node_vbn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/node_vbn.png -------------------------------------------------------------------------------- /Smash Forge/Resources/nrm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/nrm.png -------------------------------------------------------------------------------- /Smash Forge/Resources/nrmMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/nrmMap.png -------------------------------------------------------------------------------- /Smash Forge/Resources/sexy_green_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/sexy_green_down_arrow.png -------------------------------------------------------------------------------- /Smash Forge/Resources/specularSDR.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/specularSDR.dds -------------------------------------------------------------------------------- /Smash Forge/Resources/strip_camreset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/strip_camreset.png -------------------------------------------------------------------------------- /Smash Forge/Resources/strip_camsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/strip_camsettings.png -------------------------------------------------------------------------------- /Smash Forge/Resources/strip_gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/strip_gif.png -------------------------------------------------------------------------------- /Smash Forge/Resources/strip_pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/strip_pos.png -------------------------------------------------------------------------------- /Smash Forge/Resources/strip_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/strip_render.png -------------------------------------------------------------------------------- /Smash Forge/Resources/strip_rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/strip_rot.png -------------------------------------------------------------------------------- /Smash Forge/Resources/strip_sca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/strip_sca.png -------------------------------------------------------------------------------- /Smash Forge/Resources/tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/tan.png -------------------------------------------------------------------------------- /Smash Forge/Resources/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Resources/uv.png -------------------------------------------------------------------------------- /Smash Forge/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Runtime.cs -------------------------------------------------------------------------------- /Smash Forge/Shader/3ds/MBN.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/3ds/MBN.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/3ds/MBN.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/3ds/MBN.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Bfres/BFRES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Bfres/BFRES.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Bfres/BFRES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Bfres/BFRES.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Bfres/BFRES_Botw.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Bfres/BFRES_Botw.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Bfres/BFRES_Debug.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Bfres/BFRES_Debug.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Bfres/BFRES_PBR.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Bfres/BFRES_PBR.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Bfres/BFRES_utility.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Bfres/BFRES_utility.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/ForgeMesh.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/ForgeMesh.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/ForgeMesh.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/ForgeMesh.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/KCL.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/KCL.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/KCL.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/KCL.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Melee/DAT.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Melee/DAT.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Melee/DAT.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Melee/DAT.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Melee/DatDebug.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Melee/DatDebug.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Melee/MeleeUtils.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Melee/MeleeUtils.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/Bayo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/Bayo.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/EdgeDistance.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/EdgeDistance.geom -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/NUD.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/NUD.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/NUD.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/NUD.geom -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/NUD.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/NUD.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/NudDebug.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/NudDebug.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/NudSphere.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/NudSphere.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/NudSphere.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/NudSphere.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/SmashShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/SmashShader.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/StageLighting.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/StageLighting.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/UV.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/UV.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/UV.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/UV.geom -------------------------------------------------------------------------------- /Smash Forge/Shader/Nud/UV.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Nud/UV.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Point.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Point.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Point.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Point.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/PostProcessing/Gradient.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/PostProcessing/Gradient.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/PostProcessing/ScreenQuad.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/PostProcessing/ScreenQuad.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/PostProcessing/ScreenTexCoordMain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/PostProcessing/ScreenTexCoordMain.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Shadow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Shadow.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Shadow.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Shadow.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/SolidColor3D.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/SolidColor3D.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/SolidColor3D.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/SolidColor3D.vert -------------------------------------------------------------------------------- /Smash Forge/Shader/Texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Texture.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Utility/Utility.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Utility/Utility.frag -------------------------------------------------------------------------------- /Smash Forge/Shader/Utility/Wireframe.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Shader/Utility/Wireframe.frag -------------------------------------------------------------------------------- /Smash Forge/SkelAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/SkelAnimation.cs -------------------------------------------------------------------------------- /Smash Forge/Smash Forge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Smash Forge.csproj -------------------------------------------------------------------------------- /Smash Forge/Updates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/Updates.cs -------------------------------------------------------------------------------- /Smash Forge/WorkspaceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/WorkspaceManager.cs -------------------------------------------------------------------------------- /Smash Forge/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/app.manifest -------------------------------------------------------------------------------- /Smash Forge/characterSpecialBubbles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/characterSpecialBubbles.csv -------------------------------------------------------------------------------- /Smash Forge/hashTable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/hashTable.csv -------------------------------------------------------------------------------- /Smash Forge/lib/DiscordController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/DiscordController.cs -------------------------------------------------------------------------------- /Smash Forge/lib/DiscordRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/DiscordRpc.cs -------------------------------------------------------------------------------- /Smash Forge/lib/FITC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/FITC.exe -------------------------------------------------------------------------------- /Smash Forge/lib/FITD.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/FITD.exe -------------------------------------------------------------------------------- /Smash Forge/lib/MeleeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/MeleeLib.dll -------------------------------------------------------------------------------- /Smash Forge/lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Smash Forge/lib/NintacoAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/NintacoAPI.cs -------------------------------------------------------------------------------- /Smash Forge/lib/Octokit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Octokit.dll -------------------------------------------------------------------------------- /Smash Forge/lib/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /Smash Forge/lib/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/OpenTK.dll -------------------------------------------------------------------------------- /Smash Forge/lib/RG_ETC1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/RG_ETC1.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SALT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SALT.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SFGenericModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGenericModel.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SFGenericModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGenericModel.xml -------------------------------------------------------------------------------- /Smash Forge/lib/SFGraphics.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGraphics.Controls.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SFGraphics.Controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGraphics.Controls.xml -------------------------------------------------------------------------------- /Smash Forge/lib/SFGraphics.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGraphics.Utils.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SFGraphics.Utils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGraphics.Utils.xml -------------------------------------------------------------------------------- /Smash Forge/lib/SFGraphics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGraphics.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SFGraphics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFGraphics.xml -------------------------------------------------------------------------------- /Smash Forge/lib/SFShaderLoader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFShaderLoader.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SFShaderLoader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFShaderLoader.xml -------------------------------------------------------------------------------- /Smash Forge/lib/SFShapes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFShapes.dll -------------------------------------------------------------------------------- /Smash Forge/lib/SFShapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/SFShapes.xml -------------------------------------------------------------------------------- /Smash Forge/lib/Skapon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Skapon.zip -------------------------------------------------------------------------------- /Smash Forge/lib/Syroot.BinaryData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Syroot.BinaryData.dll -------------------------------------------------------------------------------- /Smash Forge/lib/Syroot.Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Syroot.Maths.dll -------------------------------------------------------------------------------- /Smash Forge/lib/Syroot.NintenTools.Bfres.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Syroot.NintenTools.Bfres.dll -------------------------------------------------------------------------------- /Smash Forge/lib/Syroot.NintenTools.MarioKart8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Syroot.NintenTools.MarioKart8.dll -------------------------------------------------------------------------------- /Smash Forge/lib/Syroot.NintenTools.NSW.Bfres.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Syroot.NintenTools.NSW.Bfres.dll -------------------------------------------------------------------------------- /Smash Forge/lib/Syroot.NintenTools.Yaz0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/Syroot.NintenTools.Yaz0.dll -------------------------------------------------------------------------------- /Smash Forge/lib/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /Smash Forge/lib/discord-rpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/discord-rpc.dll -------------------------------------------------------------------------------- /Smash Forge/lib/libg7221_decode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/libg7221_decode.dll -------------------------------------------------------------------------------- /Smash Forge/lib/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/libmpg123-0.dll -------------------------------------------------------------------------------- /Smash Forge/lib/libvgmstream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/libvgmstream.dll -------------------------------------------------------------------------------- /Smash Forge/lib/libvorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/lib/libvorbis.dll -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat01 [Beginners Material].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat01 [Beginners Material].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat02 [Standard Nrm Map].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat02 [Standard Nrm Map].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat03 [Skin Ramp].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat03 [Skin Ramp].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat04 [Metal NUD].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat04 [Metal NUD].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat05 [Metal Ganon Armor].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat05 [Metal Ganon Armor].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat06 [Metal Reflectivity Map].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat06 [Metal Reflectivity Map].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat07 [Cel-Shade].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat07 [Cel-Shade].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat08 [Material Colored Hair].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat08 [Material Colored Hair].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat09 [Satin Material].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat09 [Satin Material].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat10 [Smash64 Look].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat10 [Smash64 Look].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat11 [JoeTE Glow].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat11 [JoeTE Glow].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Character Mats/Mat12 [Bayo Hair Spec Ramp].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Character Mats/Mat12 [Bayo Hair Spec Ramp].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat01 [Diffuse].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat01 [Diffuse].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat02 [Diff+Color-Light].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat02 [Diff+Color-Light].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat03 [Diff+LightMap].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat03 [Diff+LightMap].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat04 [DiffSpec+Reflection].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat04 [DiffSpec+Reflection].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat05 [Diff+Norm].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat05 [Diff+Norm].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat06 [Diff+Cube].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat06 [Diff+Cube].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat07 [Diff+Cube+Light].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat07 [Diff+Cube+Light].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat08 [Diff+Cube+Norm+CharReflection].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat08 [Diff+Cube+Norm+CharReflection].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat09 [Diffuse+DiffuseBlend].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat09 [Diffuse+DiffuseBlend].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat10 [3-UV Diffuse].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat10 [3-UV Diffuse].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat11 [Diff+Cube+Color+Light].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat11 [Diff+Cube+Color+Light].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat12 [Diff+Cube+Norm+CharShadow].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat12 [Diff+Cube+Norm+CharShadow].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat13 [Nothing but CharShadow].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat13 [Nothing but CharShadow].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat14 [Diff+Cube+Fresnel+Light].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat14 [Diff+Cube+Fresnel+Light].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat15 [Diff+Fresnel].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat15 [Diff+Fresnel].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat16 [DiffSpec+Reflection+Masking].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat16 [DiffSpec+Reflection+Masking].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat17 [3-UV Diffuse+Cubemap].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat17 [3-UV Diffuse+Cubemap].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat18 [Diff+Color+Light].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat18 [Diff+Color+Light].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat19 [Diff+Cube+Fresnel].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat19 [Diff+Cube+Fresnel].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat20 [DiffSpec+Cube+Fresnel].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat20 [DiffSpec+Cube+Fresnel].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat21 [DiffSpec+Cube+SpecColor].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat21 [DiffSpec+Cube+SpecColor].nmt -------------------------------------------------------------------------------- /Smash Forge/materials/Stage Mats/Mat22 [Diff+Ramp].nmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/materials/Stage Mats/Mat22 [Diff+Ramp].nmt -------------------------------------------------------------------------------- /Smash Forge/param_labels/CollisionAttribute_cafe.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/CollisionAttribute_cafe.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/allstar_param_cafe.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/allstar_param_cafe.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/audience_ouen_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/audience_ouen_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/battle_object_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/battle_object_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/crazy_side_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/crazy_side_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/equipment_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/equipment_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/event_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/event_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_common.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_common.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_vl_lizardon.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_vl_lizardon.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_vl_luigi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_vl_luigi.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_vl_mario.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_vl_mario.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_vl_pikachu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_vl_pikachu.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_vl_sheik.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_vl_sheik.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_vl_xxx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_vl_xxx.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/fighter_param_vl_zelda.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/fighter_param_vl_zelda.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/global_parameter_menu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/global_parameter_menu.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/item_assist_gen_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/item_assist_gen_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/item_common_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/item_common_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/item_gen_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/item_gen_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/item_pokemon_gen_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/item_pokemon_gen_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/item_stage_gen_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/item_stage_gen_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/kumite_param_cafe.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/kumite_param_cafe.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/light_set_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/light_set_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/material_params.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/material_params.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/render_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/render_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/simple_cafe_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/simple_cafe_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/simple_character_db_cafe.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/simple_character_db_cafe.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/sq_vs_melee_data.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/sq_vs_melee_data.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stage_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stage_param.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_Cave.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_Cave.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_DKReturns.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_DKReturns.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_DxOnett.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_DxOnett.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_End_f.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_End_f.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_Gw3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_Gw3.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_Hyrule64_f.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_Hyrule64_f.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_Kalos.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_Kalos.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_Metroid.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_Metroid.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_PeachCastle64_f.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_PeachCastle64_f.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_PikminU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_PikminU.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_Pupupuland64_f.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_Pupupuland64_f.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_StreetFighter_f.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_StreetFighter_f.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_Windyhill.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_Windyhill.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_XDonkey.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_XDonkey.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_XEmblem.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_XEmblem.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_XMansion.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_XMansion.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_XOldin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_XOldin.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_XPalutena.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_XPalutena.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_XPirates_f.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_XPirates_f.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/stdat_YoshiU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/stdat_YoshiU.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_button_sequence.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_button_sequence.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_category_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_category_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_challenger_battle_db_cafe.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_challenger_battle_db_cafe.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_character_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_character_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_cleargetter_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_cleargetter_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_figure_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_figure_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_item_switch_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_item_switch_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_movie_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_movie_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_skill_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_skill_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_soft_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_soft_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_sound_call_voice_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_sound_call_voice_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_sound_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_sound_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_stage_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_stage_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/ui_tips_db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/ui_tips_db.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/unlock_condition_of_fighters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/unlock_condition_of_fighters.ini -------------------------------------------------------------------------------- /Smash Forge/param_labels/worldsmash_param.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jam1garner/Smash-Forge/HEAD/Smash Forge/param_labels/worldsmash_param.ini --------------------------------------------------------------------------------