Summary
Transform values captured at the simulation tick rate are constantly dirty while both the vehicle and the driver character are standing still. This bug was discovered month ago, but I just found the time to finally properly report it.
Please select what you are reporting on:
Verse
What Type of Bug are you experiencing?
Verse
Steps to Reproduce
- Place the following test verse device in order to reproduce the issue.
- Connect the rocket racing vehicle spawner.
- Start the game.
- Enter the vehicle (at spawn location the transforms seem to be stable).
- Drive away from the spawn location and stand still.
The transforms of both the fort_character
as well as fort_vehicle
will periodically be dirty (see screenshot and logs at the end of this bug report).
Sometimes only partial axis are dirty, but at certain locations all 3 axis will periodically report dirty values.
Transform values might be dirty while driving forward as well, however this is really hard to test and verify. Please test it internally by forcing the vehicle to some constant velocity and driving direction while checking the transform values.
using { /Fortnite.com/Devices }
using { /Fortnite.com/Vehicles }
using { /Fortnite.com/Characters }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }
transform_bug_device := class(creative_device) {
@editable
VehicleSpawner: vehicle_spawner_rocketracing_device = vehicle_spawner_rocketracing_device {}
OnBegin<override>()<suspends>: void = {
loop {
race {
Loop()
VehicleSpawner.AgentExitsVehicleEvent.Await()
}
Print("Exited Vehicle!")
}
}
Loop()<suspends>: void = {
Agent := VehicleSpawner.AgentEntersVehicleEvent.Await()
Character := if (RCharacter := Agent.GetFortCharacter[]) { RCharacter } else { return }
Vehicle := if (RVehicle := Character.GetVehicle[]) { RVehicle } else { return }
Print("Entered Vehicle!")
loop {
CharacterTransform := Character.GetTransform()
CTranslation := CharacterTransform.Translation
CDegs := CharacterTransform.Rotation.GetYawPitchRollDegrees()
CAxis := CharacterTransform.Rotation.GetAxis()
CLog := "Character x: {CTranslation.X} y: {CTranslation.Y} z: {CTranslation.Z}" +
" yaw: {CDegs[0] or 0.0} pitch: {CDegs[1] or 0.0} roll: {CDegs[2] or 0.0}" +
" rot x: {CAxis.X} rot y: {CAxis.Y} rot z: {CAxis.Z}"
Print(CLog)
VehicleTransform := Vehicle.GetTransform()
VTranslation := VehicleTransform.Translation
VDegs := VehicleTransform.Rotation.GetYawPitchRollDegrees()
VAxis := VehicleTransform.Rotation.GetAxis()
VLog := "Vehicle x: {VTranslation.X} y: {VTranslation.Y} z: {VTranslation.Z}" +
" yaw: {CDegs[0] or 0.0} pitch: {CDegs[1] or 0.0} roll: {CDegs[2] or 0.0}" +
" rot x: {VAxis.X} rot y: {VAxis.Y} rot z: {VAxis.Z}"
Print(VLog)
Sleep(0.0)
}
}
}
Expected Result
Such behavior should never ever happen. When standing still the transform values should always be constant.
Observed Result
Transform values are constantly and periodically being misreported which will mess up further calculations as the vehicle appears to move, while it actually isnβt.
Platform(s)
PC
Look for marks to see higher value fluctuation. Additionally the decimal place on the Z values seem to slightly fluctuate before and after the marked values. It looks like around 18 of the 30 simulation ticks report dirty values.
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619554 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087750 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617304 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.090000 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617304 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.090000 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617304 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.090000 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617500 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.089805 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.618049 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.089255 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.618586 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.088718 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.618994 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.088311 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.619263 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.088041 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.619424 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.087880 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.619424 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.087880 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619557 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087747 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617304 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.090000 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617304 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.090000 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617304 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.090000 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.617559 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.089745 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.618114 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.089190 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.618638 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.088666 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.619029 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.088275 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.619284 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.088020 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.619436 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.087868 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Character x: 3827.801440 y: -1882.157130 z: 149.619436 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000 π₯
LogVerse: : Vehicle x: 3817.730000 y: -1824.890000 z: -4.087868 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619560 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087744 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619560 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087744 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619560 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Vehicle x: 3817.730000 y: -1824.889999 z: -4.087744 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000
LogVerse: : Character x: 3827.801440 y: -1882.157129 z: 149.619560 yaw: -55.255949 pitch: 0.000000 roll: 0.000000 rot x: -0.000000 rot y: -0.000000 rot z: -1.000000