I am new in Blender dev. I am trying to create an add-on, and I need to store an array of integers. The problem is that I don't know the size of this array.
I used for testing the IntVectorProperty:
bpy.props.IntVectorProperty(
name='Name',
description='Desc',
default=[0,0],
subtype='NONE',
size=2
)
But the size is a required field.
Do you have any suggestions?