This file contains hidden or 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 | |
| obj = bpy.context.object | |
| vgs = obj.vertex_groups | |
| # Remove all material slots. | |
| while obj.material_slots: | |
| obj.active_material_index = 0 | |
| bpy.ops.object.material_slot_remove() | |
This file contains hidden or 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
| Verifying that I control the following Nostr public key: npub15f8t689lyp4trtwegj6qrf562g28mz6658cxkjc82tq0xqcjt0nqm8he3d |
This file contains hidden or 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
| # Create a rerelease build .zip of the (filtered) contents of the main branch | |
| # When a new tag is pushed with a semantic versioning format and _stable suffix | |
| name: ZIP Addon Release Build | |
| on: | |
| push: | |
| tags: | |
| - '*_stable' | |
| jobs: |
This file contains hidden or 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
| # Create a prerelease build .zip of the (filtered) contents of the matching version branch | |
| # When a new tag is pushed with a semantic versioning format and suffixes other than _stable | |
| name: ZIP Addon Pre-release Build | |
| on: | |
| push: | |
| tags-ignore: | |
| - '*_stable' | |
| jobs: |