All about bullets. When I write “bullet” or “standard bullet”, that’s what I’m talking about. Different from a BulletNode.

Bullets : the node vs the idea.

They’re not nodes. For optimisation reasons. This might make the whole thing a bit obscure. Basically, I directly call the Physic2DServer to create collision shapes. Each bullet is a collision shape linked to an Area2D : the Shared Area

For the visuals, I call draw() with the bullet’s texture. If the bullet is animated, the draw calls change to reflect that.

Bullets are stored in Spawning in a Dictionnary called poolbullets where the key is the collision’s RID and the value is the bullet data, represented by a Dictionnary.

<aside> 💡 A RID in Godot stands for Resource ID, it’s a unique identifier for every resource, such as collision shapes. Low level calls to Godot’s functions often use them.

</aside>

The bullet data holds its position and other data that are specific to each bullet. There’s also a reference to itsBullet Props. Since the props are a resource, they are the same for all bullets using them. That’s why the data specific to each bullet is in the bullet data dictionnary.

The Bullet Data Structure

Bullets are data structures represented as Dictionaries. They have the following entries :

General properties shared by all bullets and BulletNodes.

Properties for standard bullets only.