pick which scene to unlock using tables?
Hi
Is there a way to pick which scene (Level) to unlock rather that unlocking them in numerical order?
Thanks
Hi
Is there a way to pick which scene (Level) to unlock rather that unlocking them in numerical order?
Thanks
Comments
Use a column that represents locked/unlocked with each row corresponding to the scene index. Make it an integer column with 1 being unlocked and 0 be locked.
If tableCellValue = 1 then you can allow Change Scene by index to that row number.
Thanks @CodeMonkey