@VirtualVirgin This one
e1be96eb-6f9e-4dd0-9787-6ced41f024d8-image.png
You might also simplify your code a little by using a helper function or two for your panel data management.
For example a generic function to set a property in your 3D array structure.
inline function setPanelData(panel, key, row, col, value)
{
panel.getValue()[key][row][col] = value;
}