「Unity/MessagePack」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==MessagePackとは== 効率の良いバイナリ形式のオブジェクト・シリアライズ フォーマット 公式:https://msgpack.org/ja.html ==c#のPackage...」) |
(→neueccのMessagePack導入) |
||
(同じ利用者による、間の3版が非表示) | |||
行12: | 行12: | ||
C# neuecc | C# neuecc | ||
− | == | + | ==neueccのMessagePack導入== |
neuecc | neuecc | ||
https://github.com/MessagePack-CSharp/MessagePack-CSharp | https://github.com/MessagePack-CSharp/MessagePack-CSharp | ||
+ | |||
+ | PackageManagerのgiturlに | ||
+ | https://github.com/neuecc/MessagePack-CSharp.git?path=src/MessagePack.UnityClient/Assets/Scripts/MessagePack#v2.6.100-alpha | ||
+ | を追加。 | ||
+ | |||
+ | もしくは、Packages/manifest.jsonに以下を追加 | ||
+ | <pre> | ||
+ | { | ||
+ | "dependencies": { | ||
+ | "com.neuecc.messagepack": "https://github.com/neuecc/MessagePack-CSharp.git?path=src/MessagePack.UnityClient/Assets/Scripts/MessagePack#v2.6.100-alpha", | ||
+ | </pre> | ||
+ | ==="namespace name 'NET' does not exist"エラーが出る時=== | ||
+ | error CS0234: The type or namespace name 'NET' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) | ||
+ | ↓の手順で、Microsoft.NET.StringToolsをインストールする | ||
+ | |||
+ | ===nugetでMicrosoft.NET.StringToolsインストール=== | ||
+ | unityメイン/Edit/ProjectSettings/PackageManagerから以下を追加 | ||
+ | <pre> | ||
+ | Name: Unity NuGet | ||
+ | URL: https://unitynuget-registry.azurewebsites.net | ||
+ | Scope(s): org.nuget | ||
+ | </pre> | ||
+ | |||
+ | unityメイン/PackageManager/MyRegistoryでMicrosoft.NET.StringTools検索してインストール | ||
+ | |||
+ | ==参考== | ||
+ | https://qiita.com/p_a_sta/items/2b9522888b7488aafb7c |
2024年12月22日 (日) 16:16時点における最新版
目次
MessagePackとは
効率の良いバイナリ形式のオブジェクト・シリアライズ フォーマット
公式:https://msgpack.org/ja.html
c#のPackage
5つある C# msgpack C# ymofen C# caesay C# mlsomers C# neuecc
neueccのMessagePack導入
neuecc https://github.com/MessagePack-CSharp/MessagePack-CSharp
PackageManagerのgiturlに
https://github.com/neuecc/MessagePack-CSharp.git?path=src/MessagePack.UnityClient/Assets/Scripts/MessagePack#v2.6.100-alpha
を追加。
もしくは、Packages/manifest.jsonに以下を追加
{ "dependencies": { "com.neuecc.messagepack": "https://github.com/neuecc/MessagePack-CSharp.git?path=src/MessagePack.UnityClient/Assets/Scripts/MessagePack#v2.6.100-alpha",
"namespace name 'NET' does not exist"エラーが出る時
error CS0234: The type or namespace name 'NET' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
↓の手順で、Microsoft.NET.StringToolsをインストールする
nugetでMicrosoft.NET.StringToolsインストール
unityメイン/Edit/ProjectSettings/PackageManagerから以下を追加
Name: Unity NuGet URL: https://unitynuget-registry.azurewebsites.net Scope(s): org.nuget
unityメイン/PackageManager/MyRegistoryでMicrosoft.NET.StringTools検索してインストール