Skip to content

Commit 884424c

Browse files
authored
Fix missing space in BVH (#996)
1 parent e0d3224 commit 884424c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

server/core/src/main/java/dev/slimevr/posestreamer/BVHFileStream.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@ class BVHFileStream : PoseDataStream {
187187
val positionScale = bvhSettings.positionScale
188188
writer
189189
.write("${rootPos.x * positionScale} ${rootPos.y * positionScale} ${rootPos.z * positionScale}")
190+
191+
// Add spacing
192+
writer.write(" ")
190193
writeBoneHierarchyRotation(rootBone, null)
191194

192195
writer.newLine()

0 commit comments

Comments
 (0)