mapeditor/tiled

Do you want to work on this issue?
You can request for a bounty in order to promote it!
Copy and paste to object types editor from tileset props/objects #3676
jestarray posted onGitHub
// objecttypes.json
{
"name": "Liquid",
"type": "class",
"members": [
{
"name": "test",
"type": "string",
"value": "foo"
}
],
}
// tileset.tsj props
tiles [{
"id":2,
"properties":[
{
"name":"test",
"type":"string",
"value":"foo"
}, ]
}]
So objecttypes.json
has a member field that is pretty much compatible with tile.properties and or custom objects but you cant copy and paste to the object types editor in the ui. You also can't copy members from objecttypes class to another objecttypes class. I'm currently copying via text editor for now.