Interact with array of devices

Hey there!
I’ve got an array in my code with prop manipulators & I want to interact only with the first prop manipulator of the array with .ShowProps().

That’s my current array, but I have no idea to interact with just one prop manipulator:

    @editable DiscArray : []prop_manipulator_device = array{}

Greetings!

There should be a regular array method as .get(0) which returns the first element.

if(FirstProp := DiscArray[0]):
   #Your code here
1 Like