As from the title, I create a spritesheet using Texture Packer, and I am accessing using:
local circle = display.newImage(sheet, data:getFrameIndex("circle"))
When the circle has height and width of 100 x 100, while the circle.png is 200 x 200.
when I print circle.width, I got 100, but not 200.
How to solve this problem?
The extra transparent space that I created is actually for padding purpose, which I am intentionally place there.