mirror of
https://github.com/Not-Nik/raylib-zig.git
synced 2025-09-09 12:07:27 +00:00
Merge pull request #29 from AlxHnr/devel
Rename RayHitInfo to RayCollision
This commit is contained in:
commit
76ebb09bdb
@ -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