If you want to follow a video tutorial instead :
Make Your BulletHell or Shooter Indie Game NOW With This Godot 4 Plugin | BulletUpHell Tutorial 1
<aside> 💡 Note : spawning scenes is more costly in performance than default Bullets.
</aside>
In case you want to spawn scenes instead of bullets :
<aside>
📌 If you choose the spawn nodes by calling spawn(node spawning the bullet, pattern ID, Shared Area name,
☄️**process_id,
** ☄️**cust_bullet)
:** main function of the plugin, spawns bullets according to a pattern. If you don't want your bullets to be attached to a node, you can replace the first argument by a dictionnary containing 2 keys : "position" and "rotation", being the global rotation & position of where the bullets will be spawned. (☄️You can add another key “parent” which would be a reference to the parent node of the bullet). *process_id
* will give an ID to this function call which will allow you to stop it from spawning later, even if the spawn pattern iterations were set to infinite. The ID must be >0. Pass a dictionary as cust_bullet
to overwrite the pattern’s bullet and use a specific bullet prop instead. instead of using a SpawnPoint, DO NOT use a Dictionary as the first argument. For standard bullets, you can use a position-rotation dictionary but for node bullets, you MUST use a node, as this node will be the parent node of the bullet scene being spawned.
</aside>
Instead of an ObjectProps, you can put a BulletNode Props . This is used to spawn a BulletNode instance. Like other scenes, put it under an InstanceLister to allow it to spawn. A BulletNode is a node that acts as a default bullet, whose properties can be customized with the BulletNodeProps. Putting a scene as a child of the BulletNode will allow this scene to move as if it was a default bullet. Ideal to create custom bullet scenes.
If you do everything by code, without using the InstanceLister :
Spawning.new_instance(id:string, instance:Node2D)