Hi,
When using LUA I can define a table in properties using…
Properties =
{
Test = { default = {"","","",}},
},
… and this will give me the option of adding to and subtracting from that table in the editor’s entity inspector panel using the + symbol.
However, if I try to do this for a table of entities using…
Properties =
{
Test = { default = {EntityId(),EntityId(),EntityId(),}},
},
… the + symbol is not available.
Is there a different method for achieving this?
Thanks,
Ed.