Skip to content

Commit

Permalink
Fixed error with old augmentaUnity (depth value cast to int)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbourgeois committed Jul 16, 2018
1 parent eba070f commit 9adf75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/PointManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public void SendSceneUpdated()
msg.Append(velocitySum.y);
msg.Append(Width);
msg.Append(Height);
msg.Append(100f);
msg.Append(100);

AugmentaOSCHandler.Instance.SendMessage("AugmentaSimulatorOutput", msg);
}
Expand Down

0 comments on commit 9adf75a

Please sign in to comment.