Is it possible at all? I have an imageSheet: 300x2400 with 8 frames (300x300). I would like to show it as 150x150 animated image.
local GR_imagesheetOptions =
{
width = 300,
height = 300,
numFrames = 8,
--optional parameters; used for scaled content support
sheetContentWidth = 2400, -- width of original 1x size of entire sheet
sheetContentHeight = 300 -- height of original 1x size of entire sheet
}
I can easily double sheetContentWidth & sheetContentHeight which zooms the image in. But values smaller than the original file resolution just do not work.
If no programmatical solution found, I will just edit the file…