My "table" looks like this:
{'name':'Rupert', 'type':'Unicorn', 'actions':[
{'time':0, 'position':[0,0], 'action':'run'},
{'time':50, 'position':[50,0], 'action':'stoprun'},
{'time':50, 'position':[50,0], 'action':'jump'},
{'time':55, 'position':[50,0], 'action':'laugh'},
...
]}
Is there any way I can index the items within the actions list? Or do I have to split them up into further tables?
It would be a lot more convenient for me to keep the actions within the current table row.