I’m trying to populate a list [ rowIndex, prefabFilename ]
How to get the ROW_INDEX?
And how to Modify content of Sheet using that ROW_INDEX?
gameObjectList = []
for y in range( 1, 36742 ):
prefab = active_sheet.getCellByPosition( 8,y )
if prefab.String == "":
break
gameObjectList.append( [prefab.getCellAddress().ROW_INDEX, prefab.String ])