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
The GenerateTileSets function in src/Util.lua wrongly splits the quads.
This is the picture of all quads in gFrames['tilesets'][1].
It can be easily fixed by changing line number 54 and 55 in src/Util.lua
from this
for y = sizeY * (tilesetY - 1) + 1, sizeY * (tilesetY - 1) + 1 + sizeY do
for x = sizeX * (tilesetX - 1) + 1, sizeX * (tilesetX - 1) + 1 + sizeX do
to this
for y = sizeY * (tilesetY - 1) + 1, sizeY * (tilesetY - 1) + sizeY do
for x = sizeX * (tilesetX - 1) + 1, sizeX * (tilesetX - 1) + sizeX do
The text was updated successfully, but these errors were encountered:
The GenerateTileSets function in src/Util.lua wrongly splits the quads.
This is the picture of all quads in gFrames['tilesets'][1].
It can be easily fixed by changing line number 54 and 55 in src/Util.lua
from this
for y = sizeY * (tilesetY - 1) + 1, sizeY * (tilesetY - 1) + 1 + sizeY do
for x = sizeX * (tilesetX - 1) + 1, sizeX * (tilesetX - 1) + 1 + sizeX do
to this
for y = sizeY * (tilesetY - 1) + 1, sizeY * (tilesetY - 1) + sizeY do
for x = sizeX * (tilesetX - 1) + 1, sizeX * (tilesetX - 1) + sizeX do
The text was updated successfully, but these errors were encountered: