Culling refers to removing unnecessary stuff based on what’s on screen. If a bullet is not on screen, then it can be deleted. Unless you still need the bullet to exist outside the screen, then it can simply be not drawn. That’s a basic example.
There are 2 culling methods :
Screen culling : offscreen bullets are culled
☄️Distance culling : bullets far away from a Node of Interest have their collision disabled.
You can define nodes of interest (NoI) by adding them to Spawning.interest_list
using .append(Node2D)
. When bullets are far away from all of them, their collision will be disabled. When they get closer to any of them, their collision is enabled again. This can be useful when you have large amounts of bullets that can spawn far from the player. The player could not be hit by them, so their collision is useless. You must tweak the different parameters to fit your own game, which requires some trial & error. Tweaking is important because this culling technique requires calculation at every frame so if it’s not usefull to your game, don’t use it or it could worsen performances.
More info in ☄Disabling Bullet collision when far away from any node of interest
Spawning offers several culling options which are globally active :
update_viewport()
** : update the Rect2() which determines the limits of the screen. Used for Culling. Viewport is updated automatically every Viewport refresh rate
times but this function does it manually. It is recommended to call this function every time the scene changes in the scene’s _ready
function, before any bullet gets shot.](https://dark-peace.notion.site/update_viewport-update-the-Rect2-which-determines-the-limits-of-the-screen-Used-for-Viewpor-13e6afe4334642fc92e2c51b41ed35a0)Spawning.interest_list
will have their collision disabled.<aside> ☄️ As of now, only bullets are affected by culling, not BulletNodes.
</aside>