About multidimensional arrays

I want to write a verse code where the scaffolding disappears every second, and I’m thinking of doing it in a multidimensional array, but I don’t know how to do it, so I’d appreciate it if you could help me.

if(i = Props):.
i.Disable
sleep 1.0
I’m planning to do something like

using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }

floor2_device := class(creative_device):
    
    @editable Prop : creative_prop = creative_prop{}

    @editable Props: []creative_prop = array{}

    OnBegin<override>()<suspends>:void =

A few clarification questions:

  1. When you say you want it to disappear every second, I imagine you also want it to reappear as well?
  2. In your example code you have both Prop and Props; which one(s) should be disappearing?

Unless I misunderstand the above, you probably don’t need a multidimensional array. Here’s some code that shows and hides a prop repeatedly:

using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }

blink_device := class(creative_device):

    @editable
    Prop : creative_prop = creative_prop{}

    @editable
    VisibleTime : float = 0.5

    @editable
    InvisibleTime : float = 0.5

    OnBegin<override>()<suspends>:void=
        loop:
            Prop.Show()
            Sleep(VisibleTime)
            Prop.Hide()
            Sleep(InvisibleTime)