Modar Nasser

Results 6 comments of Modar Nasser

A toy project I created a while ago to learn ImGui. Very convenient lib, and the customization is also very easy. ![image](https://user-images.githubusercontent.com/11854124/218324807-203be4b9-4b63-47bb-a681-e97d35aaf63a.png)

To get the int grid values, you can use the [`getIntGridValue`](https://github.com/Madour/LDtkLoader/wiki/Layer#getIntGridValue) method of a Layer. It will return an [IntGridValue ](https://github.com/Madour/LDtkLoader/wiki/DataTypes#struct--ldtkIntGridValue) that contains the value, name and color. To get...

Okay, so if I understand correctly, you would like a way to get all tiles that have a specific intgrid value ? An API like this: ```c++ auto Layer::getIntGridValuePositions(const string&...

The APIs you requested were (finally) added ! Please check commit 8b6c344ef4c46475f382905513b4d19aff00eea9 for the IntGrid related APIs, and commit eb24808c6d28aab3f9cb3cd5e0912f312c43ec53 for the EnumTag related APIs. Basically, you can now do...

Hello, thank you for the PR. I am not sure I understand what does the Tile offset represents. Looking at the code, you specify the tile offset as: ```cpp {...

Ah, I think I understand what you are trying to do now. In the scenario where layer cell size is not the same as tileset cell size, you are trying...