<div dir="ltr"><div>Hello,</div><div><br></div><div>Quick question on VectorProperty's:<br></div><div><br></div><div>I've created a scene property named a:</div>bpy.types.Scene.a = bpy.props.IntVectorProperty(<br>    name='a',<br>    description="Frequencies",<br>    size=2,<br>    default=[1, 2]<br>)<br><br><div>And now I would like to update it's size dynamically.</div><div>The idea is to have a panel showing an array of integers which length and values the user would change.<br></div><br><div>I can probably get away with deleting the property and creating a new one with the same name, with the new size. If that's the only solution, and since my IntVectorProperty actually belongs to a PropertyGroup, how would I be able to delete the IntVectorProperty and create a new one inside the PropertyGroup?<br></div><div><br></div><div>I hope this makes sense, let me know if you find the question confusing.</div><div><br></div><div>Thanks in advance,</div><div>Gonçalo</div><div><br></div><div><br></div><div> <br></div><br></div>