generated from stilobique/BlenderTemplate
11 lines
225 B
Python
11 lines
225 B
Python
import bpy
|
|
|
|
|
|
class FangeProperties(bpy.types.PropertyGroup):
|
|
|
|
socket_collection: bpy.props.BoolProperty(
|
|
name='State Socket use',
|
|
description='Use the socket collection setup',
|
|
default=False
|
|
)
|