mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-05-08 23:46:04 +03:00
Change common parts of model API to use signed integers rather than unsigned for less casting
This commit is contained in:
parent
de41fb5508
commit
ae2e70a223
23 changed files with 102 additions and 102 deletions
|
@ -181,8 +181,8 @@ public partial class TestData
|
|||
{
|
||||
Format = ImageFormat.Png,
|
||||
Source = "tileset.png",
|
||||
Width = fileExt == "tmx" ? 256u : 0, // Currently, json format does not
|
||||
Height = fileExt == "tmx" ? 96u : 0 // include image dimensions in image layer https://github.com/mapeditor/tiled/issues/4028
|
||||
Width = fileExt == "tmx" ? 256 : 0, // Currently, json format does not
|
||||
Height = fileExt == "tmx" ? 96 : 0 // include image dimensions in image layer https://github.com/mapeditor/tiled/issues/4028
|
||||
},
|
||||
RepeatX = true
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue