Skip to content

Commit

Permalink
1.0.9 fix float ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Dec 5, 2021
1 parent 968cf3b commit 7e75018
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Runtime/OSCQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,8 @@ JSONObject getPropObject(Type type, object value, RangeAttribute range = null, b
JSONObject ro0 = new JSONObject();
if (range != null)
{
ro0.Add(range.min);
ro0.Add(range.max);
ro0.SetField("MIN", range.min);
ro0.SetField("MAX", range.max);
}

string typeString = type.ToString();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"repository": "github:benkper/Unity-OSCQuery",
"unity": "2018.3",
"unityRelease": "0f1",
"version": "1.0.8"
"version": "1.0.9"
}

0 comments on commit 7e75018

Please sign in to comment.