mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-26 03:51:46 +00:00
Fixed crash in obj_is_in_view()
This commit is contained in:
parent
0e9a060337
commit
8e5ffe9467
1 changed files with 2 additions and 0 deletions
|
|
@ -1142,6 +1142,8 @@ static void geo_process_shadow(struct GraphNodeShadow *node) {
|
|||
* Since (0,0,0) is unaffected by rotation, columns 0, 1 and 2 are ignored.
|
||||
*/
|
||||
static s32 obj_is_in_view(struct GraphNodeObject *node, Mat4 matrix) {
|
||||
if (!node || !gCurGraphNodeCamFrustum) { return FALSE; }
|
||||
|
||||
if (node->node.flags & GRAPH_RENDER_INVISIBLE) {
|
||||
return FALSE;
|
||||
} else if (node->skipInViewCheck) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue