diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-12-07 16:20:55 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-12-07 16:20:55 -0300 |
commit | eb170d7e2db393c0e90af7b1ff4b512ec7572af3 (patch) | |
tree | c0f7a7c9ef1a3453f71de2a25fac02cb82517b58 /src/information_only | |
parent | 5bd009dc46f8e082b71b3e41c626ecd523469e7f (diff) |
Fix ppu_rp2c02.lua
Diffstat (limited to 'src/information_only')
-rw-r--r-- | src/information_only/scripts/load/graphics/ppu_rp2c02.lua | 85 |
1 files changed, 32 insertions, 53 deletions
diff --git a/src/information_only/scripts/load/graphics/ppu_rp2c02.lua b/src/information_only/scripts/load/graphics/ppu_rp2c02.lua index a818d3a..5e3da47 100644 --- a/src/information_only/scripts/load/graphics/ppu_rp2c02.lua +++ b/src/information_only/scripts/load/graphics/ppu_rp2c02.lua @@ -21,7 +21,21 @@ return { }, colors = { 54, - limit = 25, + limit = { + background = 1, + tiles = { + 3, + 3, + 3, + 3, + }, + sprites = { + 3, + 3, + 3, + 3, + }, + }, transparent = 'colorKey', }, mesh = false, @@ -59,65 +73,30 @@ return { a = { colors = '2bpp', specifyColors = false, - moveIndividual = 'bcd', - independent = 'bcd', - mirror = 'tilesOnly', - rotate = false, - scale = false, - shear = true, - affine = true, - size = { - default = { - width = 32, - height = 32, - }, - }, - }, - b = { - colors = '2bpp', - specifyColors = false, - moveIndividual = 'acd', - independent = 'acd', - mirror = 'tilesOnly', - rotate = false, - scale = false, - shear = true, - affine = true, - size = { - default = { - width = 32, - height = 32, - }, + moveIndividual = false, + independent = false, + mirror = { + 'horizontal', + 'vertical', + 'singleScreen', + 'fourScreens', + 'diagonal', + 'lShaped' + 'threeScreenHorizontal', + 'threeScreenVertical', + 'threeScreenDiagonal', }, - }, - c = { - colors = '2bpp', - specifyColors = false, - moveIndividual = 'abd', - independent = 'abd', - mirror = 'tilesOnly', rotate = false, scale = false, - shear = true, - affine = true, + shear = false, + affine = false, size = { default = { - width = 32, - height = 32, + width = 8, + height = 8, }, }, - }, - d = { - colors = '2bpp', - specifyColors = false, - moveIndividual = 'abc', - independent = 'abc', - mirror = 'tilesOnly', - rotate = false, - scale = false, - shear = true, - affine = true, - size = { + map = { default = { width = 32, height = 32, |