blender-syntax-properties
Installation
SKILL.md
blender-syntax-properties
Quick Reference
Property Type Selection
| Need | Property Type | Python Type |
|---|---|---|
| Toggle/flag | BoolProperty |
bool |
| Count/index | IntProperty |
int |
| Size/factor | FloatProperty |
float |
| Name/path | StringProperty |
str |
| Dropdown/mode | EnumProperty |
str (identifier) |
| Axis toggles (X, Y, Z) | BoolVectorProperty |
tuple[bool, ...] |
| Dimensions | IntVectorProperty |
tuple[int, ...] |
| Color/position/rotation | FloatVectorProperty |
tuple[float, ...] |
| Link to another type | PointerProperty |
Reference to PropertyGroup or ID |
| Dynamic list | CollectionProperty |
List of PropertyGroup items |
Related skills
More from openaec-foundation/blender-bonsai-ifcopenshell-sverchok-claude-skill-package
blender-syntax-materials
>
3blender-core-gpu
>
3blender-agents-code-validator
>
3blender-syntax-panels
>
3blender-errors-data
>
3blender-syntax-data
Covers Blender data management including collections, library overrides, asset system, linked libraries, BlendDataLibraries, data block creation and removal, fake users, and data transfer between files. Activates when managing Blender collections, linking/appending data, working with library overrides, or using the asset system.
3