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 |