mirror of
https://github.com/Not-Nik/raylib-zig.git
synced 2025-09-09 12:07:27 +00:00
Rename RayHitInfo to RayCollision
This struct was renamed by upstream a while ago:
1c5de9721a
This commit is contained in:
parent
3a7b9f0009
commit
7ee4eb953d
@ -323,10 +323,10 @@ pub const Ray = extern struct {
|
|||||||
direction: Vector3,
|
direction: Vector3,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const RayHitInfo = extern struct {
|
pub const RayCollision = extern struct {
|
||||||
hit: bool,
|
hit: bool,
|
||||||
distance: f32,
|
distance: f32,
|
||||||
position: Vector3,
|
point: Vector3,
|
||||||
normal: Vector3,
|
normal: Vector3,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user