├── .gitattributes ├── .gitignore ├── BodyBezierMode.Designer.cs ├── BodyBezierMode.cs ├── BodyBezierMode.resx ├── CheckUpdate.Designer.cs ├── CheckUpdate.cs ├── CheckUpdate.resx ├── Class1.cs ├── Class2.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Form2.Designer.cs ├── Form2.cs ├── Form2.resx ├── Form3.resx ├── JointBezierMode.Designer.cs ├── JointBezierMode.cs ├── JointBezierMode.resx ├── JointBezierModeSetAll.Designer.cs ├── JointBezierModeSetAll.cs ├── JointBezierModeSetAll.resx ├── MetroFramework.Design.dll ├── MetroFramework.dll ├── PEPlugin.dll ├── PE多功能信息处理插件.csproj ├── PE多功能信息处理插件.sln ├── PmxEditorCore.dll ├── PmxEditorLib.dll ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resource1.Designer.cs ├── Resource1.resx ├── Resources └── program ├── TaskWindowControl.Designer.cs ├── TaskWindowControl.cs ├── TaskWindowControl.resx ├── TranslateMod.cs ├── UpdateCheck.Designer.cs ├── UpdateCheck.cs ├── UpdateCheck.resx ├── app.config ├── zh_CN.Designer.cs ├── zh_CN.resx ├── zn_CN.dat └── 未命名-3.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/.gitignore -------------------------------------------------------------------------------- /BodyBezierMode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/BodyBezierMode.Designer.cs -------------------------------------------------------------------------------- /BodyBezierMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/BodyBezierMode.cs -------------------------------------------------------------------------------- /BodyBezierMode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/BodyBezierMode.resx -------------------------------------------------------------------------------- /CheckUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/CheckUpdate.Designer.cs -------------------------------------------------------------------------------- /CheckUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/CheckUpdate.cs -------------------------------------------------------------------------------- /CheckUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/CheckUpdate.resx -------------------------------------------------------------------------------- /Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Class1.cs -------------------------------------------------------------------------------- /Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Class2.cs -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Form1.resx -------------------------------------------------------------------------------- /Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Form2.Designer.cs -------------------------------------------------------------------------------- /Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Form2.cs -------------------------------------------------------------------------------- /Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Form2.resx -------------------------------------------------------------------------------- /Form3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Form3.resx -------------------------------------------------------------------------------- /JointBezierMode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/JointBezierMode.Designer.cs -------------------------------------------------------------------------------- /JointBezierMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/JointBezierMode.cs -------------------------------------------------------------------------------- /JointBezierMode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/JointBezierMode.resx -------------------------------------------------------------------------------- /JointBezierModeSetAll.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/JointBezierModeSetAll.Designer.cs -------------------------------------------------------------------------------- /JointBezierModeSetAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/JointBezierModeSetAll.cs -------------------------------------------------------------------------------- /JointBezierModeSetAll.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/JointBezierModeSetAll.resx -------------------------------------------------------------------------------- /MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/MetroFramework.Design.dll -------------------------------------------------------------------------------- /MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/MetroFramework.dll -------------------------------------------------------------------------------- /PEPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/PEPlugin.dll -------------------------------------------------------------------------------- /PE多功能信息处理插件.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/PE多功能信息处理插件.csproj -------------------------------------------------------------------------------- /PE多功能信息处理插件.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/PE多功能信息处理插件.sln -------------------------------------------------------------------------------- /PmxEditorCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/PmxEditorCore.dll -------------------------------------------------------------------------------- /PmxEditorLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/PmxEditorLib.dll -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/README.md -------------------------------------------------------------------------------- /Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Resource1.Designer.cs -------------------------------------------------------------------------------- /Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Resource1.resx -------------------------------------------------------------------------------- /Resources/program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/Resources/program -------------------------------------------------------------------------------- /TaskWindowControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/TaskWindowControl.Designer.cs -------------------------------------------------------------------------------- /TaskWindowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/TaskWindowControl.cs -------------------------------------------------------------------------------- /TaskWindowControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/TaskWindowControl.resx -------------------------------------------------------------------------------- /TranslateMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/TranslateMod.cs -------------------------------------------------------------------------------- /UpdateCheck.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/UpdateCheck.Designer.cs -------------------------------------------------------------------------------- /UpdateCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/UpdateCheck.cs -------------------------------------------------------------------------------- /UpdateCheck.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/UpdateCheck.resx -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/app.config -------------------------------------------------------------------------------- /zh_CN.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/zh_CN.Designer.cs -------------------------------------------------------------------------------- /zh_CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/zh_CN.resx -------------------------------------------------------------------------------- /zn_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/zn_CN.dat -------------------------------------------------------------------------------- /未命名-3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdj68765/PEPlugin-Git/HEAD/未命名-3.ico --------------------------------------------------------------------------------