소스 검색

Merge pull request #61523 from lawnjelly/portals_fix_moving_add

Portals - force full check on adding moving object
Rémi Verschelde 3 년 전
부모
커밋
cd0b4bdb23
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      servers/visual/portals/portal_renderer.cpp

+ 1 - 1
servers/visual/portals/portal_renderer.cpp

@@ -59,7 +59,7 @@ OcclusionHandle PortalRenderer::instance_moving_create(VSInstance *p_instance, R
 	}
 
 	OcclusionHandle handle = pool_id + 1;
-	instance_moving_update(handle, p_aabb);
+	instance_moving_update(handle, p_aabb, true);
 	return handle;
 }