Search Issue Tracker
Won't Fix
Won't Fix in 2023.1.X
Votes
0
Found in
2020.3.41f1
2021.3.13f1
2022.1.23f1
2022.2.0b15
2023.1.0a18
Issue ID
UUM-19901
Regression
No
The point value of RaycastHit is output incorrectly after the Physics.BoxCast when the halfExtents parameter is between 0.11 and 0.992
Steps to reproduce:
1. Open the “BoxCasterTesterZip” project
2. Enter Play Mode
3. Observe the Console
Expected result: Log “raycastHit.point = 3.5, -0.333, 0”
Actual result: Log “raycastHit.point = 0.11, 0, 0”
Reproducible with: 2020.3.41f1, 2021.3.13f1, 2022.1.23f1, 2022.2.0b15, 2023.1.0a18
Reproduced on: macOS Monterey 12.5.1 (Intel)
Note:
- Only reproducible when the “Caster” GameObject x position is [0.11; 0.992]
- Also reproducible in the Player
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Shader Graph Node information is briefly displayed in Graph Inspector when clicking on Category in the Blackboard
- Module installation fails with "Download failed: Validation Failed" errors when using beta.2 Hub version
- JsonConvert conversion fails trying to call GetCallbackMethodsForType when [OnDeserialized] is used in a class
- Shader Graph Category dropdown cannot be expanded/collapsed when clicking on the text
- Different text alignment in the column header in Entities "System" window
Resolution Note:
The halfExtends parameter is not set as per the documentation instructions:
https://docs.unity3d.com/ScriptReference/Physics.BoxCast.html
HalfExtends requires half the size of the box in each dimension. On the example only the X axis complies with that requirement.
Resolution Note (2023.1.X):
The halfExtends parameter is not set as per the documentation instructions:
https://docs.unity3d.com/ScriptReference/Physics.BoxCast.html
HalfExtends requires half the size of the box in each dimension. On the example only the X axis complies with that requirement.