diff --git a/Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json b/Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json deleted file mode 100644 index 2d252cf..0000000 --- a/Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "Ragon.Client/1.0.0": { - "dependencies": { - "NETStandard.Library": "2.0.3", - "Ragon.Protocol": "1.0.0" - }, - "runtime": { - "Ragon.Client.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "Ragon.Protocol/1.0.0": { - "runtime": { - "Ragon.Protocol.dll": {} - } - } - } - }, - "libraries": { - "Ragon.Client/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "Ragon.Protocol/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json.meta b/Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json.meta deleted file mode 100644 index 69afaa3..0000000 --- a/Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: d1985a69fcd954fb2a6c8f62982f8609 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Runtime/Plugins/netstandard2.0/Ragon.Client.dll b/Runtime/Plugins/netstandard2.0/Ragon.Client.dll index 51cb408..1cc17fb 100644 Binary files a/Runtime/Plugins/netstandard2.0/Ragon.Client.dll and b/Runtime/Plugins/netstandard2.0/Ragon.Client.dll differ diff --git a/Runtime/Plugins/netstandard2.0/Ragon.Protocol.dll b/Runtime/Plugins/netstandard2.0/Ragon.Protocol.dll index 47e1a11..3cd1bda 100644 Binary files a/Runtime/Plugins/netstandard2.0/Ragon.Protocol.dll and b/Runtime/Plugins/netstandard2.0/Ragon.Protocol.dll differ diff --git a/Runtime/Sources/Properties/RagonString.cs b/Runtime/Sources/Properties/RagonString.cs index ac33122..d8c6d05 100644 --- a/Runtime/Sources/Properties/RagonString.cs +++ b/Runtime/Sources/Properties/RagonString.cs @@ -42,6 +42,11 @@ public string Value private readonly UTF8Encoding _utf8Encoding = new UTF8Encoding(false, true); private int _max; + public RagonString(): base(0, false) + { + + } + public RagonString( string value, int max = 32, diff --git a/Runtime/Sources/Properties/RagonVector3.cs b/Runtime/Sources/Properties/RagonVector3.cs index fd46661..3c19c76 100644 --- a/Runtime/Sources/Properties/RagonVector3.cs +++ b/Runtime/Sources/Properties/RagonVector3.cs @@ -53,7 +53,12 @@ public Vector3 Value private FloatCompressor _compressorX; private FloatCompressor _compressorY; private FloatCompressor _compressorZ; - + + public RagonVector3(): base(0, false) + { + + } + public RagonVector3( Vector3 value, RagonAxis axis = RagonAxis.XYZ,