Skip to content

Commit

Permalink
Disable velocity distortion by default
Browse files Browse the repository at this point in the history
  • Loading branch information
msz-rai committed Sep 23, 2023
1 parent ac0a219 commit a7ddfb8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ MonoBehaviour:
modelPreset: 8
applyDistanceGaussianNoise: 1
applyAngularGaussianNoise: 1
applyVelocityDistortion: 1
applyVelocityDistortion: 0
configuration:
rayGenerateMethod: 2
laserArray:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ MonoBehaviour:
modelPreset: 6
applyDistanceGaussianNoise: 1
applyAngularGaussianNoise: 1
applyVelocityDistortion: 1
applyVelocityDistortion: 0
configuration:
rayGenerateMethod: 0
laserArray:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ MonoBehaviour:
modelPreset: 5
applyDistanceGaussianNoise: 1
applyAngularGaussianNoise: 1
applyVelocityDistortion: 1
applyVelocityDistortion: 0
configuration:
rayGenerateMethod: 0
laserArray:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ MonoBehaviour:
modelPreset: 7
applyDistanceGaussianNoise: 1
applyAngularGaussianNoise: 1
applyVelocityDistortion: 1
applyVelocityDistortion: 0
configuration:
rayGenerateMethod: 0
laserArray:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ MonoBehaviour:
modelPreset: 2
applyDistanceGaussianNoise: 1
applyAngularGaussianNoise: 1
applyVelocityDistortion: 1
applyVelocityDistortion: 0
configuration:
rayGenerateMethod: 0
laserArray:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ MonoBehaviour:
modelPreset: 3
applyDistanceGaussianNoise: 1
applyAngularGaussianNoise: 1
applyVelocityDistortion: 1
applyVelocityDistortion: 0
configuration:
rayGenerateMethod: 0
laserArray:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ MonoBehaviour:
modelPreset: 4
applyDistanceGaussianNoise: 1
applyAngularGaussianNoise: 1
applyVelocityDistortion: 1
applyVelocityDistortion: 0
configuration:
rayGenerateMethod: 0
laserArray:
Expand Down
2 changes: 1 addition & 1 deletion Assets/RGLUnityPlugin/Scripts/LidarSensor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class LidarSensor : MonoBehaviour
/// <summary>
/// Allows to quickly enable/disable velocity distortion
/// </summary>
public bool applyVelocityDistortion = true;
public bool applyVelocityDistortion = false;

/// <summary>
/// Encapsulates description of a point cloud generated by a LiDAR and allows for fine-tuning.
Expand Down

0 comments on commit a7ddfb8

Please sign in to comment.