Last active
February 24, 2025 04:41
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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