You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If i create a custom property in Tiled map editor, and is a 'bool' property that is set to false, and the custom property entered is the first in the list, then the properties never get converted.
properties[1].value
local function tiledProperties(properties)
if (#properties > 0) and properties[1].name and properties[1].value then
...
end
end
Here is a fix... (properties[1].value ~= nil)
local function tiledProperties(properties)
if (#properties > 0) and properties[1].name and (properties[1].value ~= nil) then
...
end
end
The text was updated successfully, but these errors were encountered:
Anjilo
added a commit
to Anjilo/ponytiled
that referenced
this issue
Sep 30, 2023
If i create a custom property in Tiled map editor, and is a 'bool' property that is set to false, and the custom property entered is the first in the list, then the properties never get converted.
properties[1].value
Here is a fix... (properties[1].value ~= nil)
The text was updated successfully, but these errors were encountered: