Update raylib_api.* by CI
This commit is contained in:
parent
df4ff4e78b
commit
bc6cf61794
4 changed files with 4 additions and 4 deletions
|
@ -1058,7 +1058,7 @@
|
||||||
{
|
{
|
||||||
"type": "Vector3",
|
"type": "Vector3",
|
||||||
"name": "direction",
|
"name": "direction",
|
||||||
"description": "Ray direction"
|
"description": "Ray direction (normalized)"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
|
@ -1058,7 +1058,7 @@ return {
|
||||||
{
|
{
|
||||||
type = "Vector3",
|
type = "Vector3",
|
||||||
name = "direction",
|
name = "direction",
|
||||||
description = "Ray direction"
|
description = "Ray direction (normalized)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -473,7 +473,7 @@ Struct 23: Ray (2 fields)
|
||||||
Name: Ray
|
Name: Ray
|
||||||
Description: Ray, ray for raycasting
|
Description: Ray, ray for raycasting
|
||||||
Field[1]: Vector3 position // Ray position (origin)
|
Field[1]: Vector3 position // Ray position (origin)
|
||||||
Field[2]: Vector3 direction // Ray direction
|
Field[2]: Vector3 direction // Ray direction (normalized)
|
||||||
Struct 24: RayCollision (4 fields)
|
Struct 24: RayCollision (4 fields)
|
||||||
Name: RayCollision
|
Name: RayCollision
|
||||||
Description: RayCollision, ray hit information
|
Description: RayCollision, ray hit information
|
||||||
|
|
|
@ -220,7 +220,7 @@
|
||||||
</Struct>
|
</Struct>
|
||||||
<Struct name="Ray" fieldCount="2" desc="Ray, ray for raycasting">
|
<Struct name="Ray" fieldCount="2" desc="Ray, ray for raycasting">
|
||||||
<Field type="Vector3" name="position" desc="Ray position (origin)" />
|
<Field type="Vector3" name="position" desc="Ray position (origin)" />
|
||||||
<Field type="Vector3" name="direction" desc="Ray direction" />
|
<Field type="Vector3" name="direction" desc="Ray direction (normalized)" />
|
||||||
</Struct>
|
</Struct>
|
||||||
<Struct name="RayCollision" fieldCount="4" desc="RayCollision, ray hit information">
|
<Struct name="RayCollision" fieldCount="4" desc="RayCollision, ray hit information">
|
||||||
<Field type="bool" name="hit" desc="Did the ray hit something?" />
|
<Field type="bool" name="hit" desc="Did the ray hit something?" />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue