In Godot, the number of draw calls for Spine characters can be higher compared to other engines like Cocos due to how Godot handles rendering and batching. Here are some steps you can take to reduce the number of draw calls:
Texture Atlases: Ensure that your Spine assets are using a single texture atlas. This can help reduce draw calls as Godot can batch draw calls more effectively when using a single texture.
Material Sharing: Make sure that all your Spine nodes are sharing the same material. Different materials will prevent Godot from batching draw calls together.
Optimize Skeletons: Simplify your skeletons and reduce the number of slots and attachments if possible. Each slot and attachment can contribute to additional draw calls.
Use Binary Exports: Prefer using binary exports (
.skel
) over JSON exports (.spine-json
) as they are more efficient in terms of loading and processing.Check for Overdraw: Ensure that your Spine animations are not causing excessive overdraw, which can increase the number of draw calls.
Godot Settings: Check your Godot project settings for any rendering options that might affect batching and draw calls.
By following these steps, you should be able to reduce the number of draw calls for your Spine characters in Godot.