From abb1e3e10be34872ca3a22212d61ed4f404e1e55 Mon Sep 17 00:00:00 2001 From: "coadde [Márcio Alexandre Silva Delgado]" Date: Tue, 6 Dec 2016 00:30:35 -0300 Subject: Update GPU scripts --- .../scripts/load/gpu/ppu_rp2c02_affine.lua | 105 +++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ppu_rp2c02_affine.lua (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ppu_rp2c02_affine.lua') diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ppu_rp2c02_affine.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ppu_rp2c02_affine.lua new file mode 100644 index 0000000..ba53cfd --- /dev/null +++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/ppu_rp2c02_affine.lua @@ -0,0 +1,105 @@ +return { + screen = { + default = { + width = 256, + height = 224, + fps = 29.97, + origin = { + x = 0, + y = -8, + }, + }, + pal = { + width = 256, + height = 240, + fps = 25, + origin = { + x = 0, + y = 0, + }, + }, + }, + colors = { + '6bpp', + transparent = 'colorKey', + }, + mesh = false, + api = false, + shader = { + false, + fragment = false, + }, + physic = false, + sprite = { + true, + colors = '2bpp', + limits = { + true, + screen = 64, + line = 8, + }, + rotate = false, + scale = false, + shear = false, + affine = false, + size = { + default = { + width = 8, + height = 8, + }, + bigH = { + width = 8, + height = 16, + }, + }, + }, + tile = { + layer = { + { + colors = '2bpp', + specifyColors = false, + moveIndividual = false, + rotate = false, + scale = false, + shear = false, + affine = true, + size = { + default = { + width = 32, + height = 32, + }, + }, + }, + { + colors = '2bpp', + specifyColors = false, + moveIndividual = false, + rotate = false, + scale = false, + shear = false, + affine = false, + size = { + default = { + width = 32, + height = 32, + }, + }, + }, + { + colors = '2bpp', + specifyColors = false, + moveIndividual = false, + rotate = false, + scale = false, + shear = false, + affine = false, + size = { + default = { + width = 32, + height = 32, + }, + }, + }, + }, + }, +} -- cgit v1.2.3-54-g00ecf