I put some custom data in the “Prim Custom Data” property in the Isaac Sim GUI and I can access it via the Python API. This works fine until I enter an array in the “Prim Custom Data” field. Then the field does not display any data anymore and I can not edit it anymore. Closing and reopening Isaac Sim did not help. Even stranger: I can still access the data with the Python API.
To give an example:
This works:
{
“test1”: “test”,
“test2”: “test”
}
This results in the problems in the GUI:
{
“test1”: “test”,
“test2”: [“test”,“test”,“test”]
}
Am I doing something wrong, or is this a bug in the Isaac Sim GUI?