Merge pull request #29 from AlxHnr/devel
Rename RayHitInfo to RayCollision
This commit is contained in:
commit
76ebb09bdb
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue