TheBoneJarmer / TiledCS

TiledCS is a dotnet library for loading Tiled tilesets and maps
MIT License
139 stars 51 forks source link

TiledObject.rotation should be a float not an int. #61

Closed Bryan-Legend closed 2 years ago

Bryan-Legend commented 2 years ago

Change ParseObjects as well.

if (node.Attributes["rotation"] != null) { obj.rotation = float.Parse(node.Attributes["rotation"].Value); }

TheBoneJarmer commented 2 years ago

Hey

Sorry for the late reply. I will fix this asap but my current priority lies with my new TeamCity server and some c++ projects. I hope to be able to automate builds and releases in the near future, including the ones for TiledCS.

With kind regards, TheBoneJarmer

TheBoneJarmer commented 2 years ago

Hi @Bryan-Legend

I wanted to let you know I fixed this just now. It will become available within the next minor release.

With kind regards, TheBoneJarmer

Bryan-Legend commented 2 years ago

Thanks!