Skip to content

Commit

Permalink
chore: update client sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
edmand46 committed Aug 15, 2024
1 parent 34be7be commit 6e31a17
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 66 deletions.
58 changes: 0 additions & 58 deletions Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json

This file was deleted.

7 changes: 0 additions & 7 deletions Runtime/Plugins/netstandard2.0/Ragon.Client.deps.json.meta

This file was deleted.

Binary file modified Runtime/Plugins/netstandard2.0/Ragon.Client.dll
Binary file not shown.
Binary file modified Runtime/Plugins/netstandard2.0/Ragon.Protocol.dll
Binary file not shown.
5 changes: 5 additions & 0 deletions Runtime/Sources/Properties/RagonString.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
7 changes: 6 additions & 1 deletion Runtime/Sources/Properties/RagonVector3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6e31a17

Please sign in to comment.