Skip to content

Instantly share code, notes, and snippets.

@catprisbrey
Last active February 24, 2025 04:41
Show Gist options
  • Save catprisbrey/8a162527c0cd48c7422c8350dd7cf487 to your computer and use it in GitHub Desktop.
Save catprisbrey/8a162527c0cd48c7422c8350dd7cf487 to your computer and use it in GitHub Desktop.
Blender to Godot - Add "-col" to every object name. Useful for simple collision shape generation
import bpy
for obj in bpy.data.objects:
obj.name += "-col"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment