PMXParser 1.0.1
See the version list below for details.
dotnet add package PMXParser --version 1.0.1
NuGet\Install-Package PMXParser -Version 1.0.1
<PackageReference Include="PMXParser" Version="1.0.1" />
paket add PMXParser --version 1.0.1
#r "nuget: PMXParser, 1.0.1"
// Install PMXParser as a Cake Addin #addin nuget:?package=PMXParser&version=1.0.1 // Install PMXParser as a Cake Tool #tool nuget:?package=PMXParser&version=1.0.1
PMX Parser
What is This ?
PMX file parser library of C# (.NET Standard 2.1 / 2.0). PMX file is MMD (Miku Miku Dance) model file.
This parser parses PMX file into structual C# class.
This is just a parser, so drawing 3D models is NOT SUPPORTED in this library.
How to Use
Parsing from file name
var pmx = MMDTools.PMXParser.Parse("your_file.pmx");
Parsing from Stream
using(var stream = System.IO.File.OpenRead(fileName))
{
var pmx = MMDTools.PMXParser.Parse(stream);
}
Requirements and Dependencies (On Building)
- .NET Standard 2.1 / 2.0
- C# 8.0
dotnet
command (.NET Core CLI Tools)
Installation
The package is published on Nuget.
https://www.nuget.org/packages/PMXParser
# nuget package manager
PM> Install-Package PMXParser
Building
Windows, Mac, Linux
$ git clone https://github.com/ikorin24/PMXParser.git
$ cd PMXParser
$ dotnet build PMXParser/PMXParser.csproj -c Release
# ---> PMXParser/bin/Release/netstandard2.1/PMXParser.dll
# ---> PMXParser/bin/Release/netstandard2.0/PMXParser.dll
You don't Know PMX File Format ?
You can see the format of PMX in a text of PmxEditor, download from the following link. Download zip and extract 'PmxEditor/Lib/PMX仕様書/PMX仕様.txt'
. (It is written in Japanese)
NOTICE
PmxEditor is NOT MY PRODUCTION.
http://kkhk22.seesaa.net/category/14045227-1.html
License and Credits
Author : ikorin24
This repository is under MIT License.
This repository contains some licensed products. The list of them and their license are HERE.
Release Note
2020/01/04 ver 0.9.0
First Release
2020/01/06 ver 0.9.1
Bug fix and performance improvement a little
2020/01/09 ver 0.9.2
- Add .NET Framework version
- Add
DebuggerDisplayAttribute
to some types
2020/01/12 ver 1.0.0
- Change target .NET version into .NET Standard 2.1 and 2.0.
- Fix small bugs.
2020/01/12 ver 1.0.1
- Fix a big bug.
- Parse incorrect value in case of
byteSize
is not 4 inNextDataOfSize
method.
- Parse incorrect value in case of
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Memory (>= 4.5.3)
-
.NETStandard 2.1
- System.Memory (>= 4.5.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.