diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-12-06 16:51:38 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-12-06 16:51:38 -0300 |
commit | e87d6d684e17375d3c91d0f0f90cbcb7a10384e7 (patch) | |
tree | 394250b70493d78b2f7b67e7bdf455f83429bd94 | |
parent | a276dd882a1730464090a2d269b3c8be3b44b809 (diff) |
Move ym7101 to information_only directory
-rw-r--r-- | src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/information_only/ym7101+sh2.lua | 128 | ||||
-rw-r--r-- | src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/information_only/ym7101.lua (renamed from src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/ym7101.lua) | 0 |
2 files changed, 128 insertions, 0 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/information_only/ym7101+sh2.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/information_only/ym7101+sh2.lua new file mode 100644 index 0000000..4c5c0b8 --- /dev/null +++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/information_only/ym7101+sh2.lua @@ -0,0 +1,128 @@ +return { + screen = { + default = { + width = 320, + height = 224, + fps = 29.97, + origin = { + x = 0, + y = 0, + }, + }, + pal = { + width = 320, + height = 240, + fps = 25, + origin = { + x = 0, + y = 0, + }, + }, + }, + colors = { + '15bpp', + transparent = 'colorKey', + }, + mesh = true, + api = false, + shader = { + false, + fragment = false, + }, + physic = false, + sprite = { + true, + colors = '4bpp', + limits = { + true, + screen = 320, + line = 80, + }, + rotate = true, + scale = true, + shear = true, + affine = true, + size = { + small = { + width = 8, + height = 8, + }, + default = { + width = 16, + height = 16, + }, + big = { + width = 24, + height = 24, + }, + huge = { + width = 32, + height = 32, + }, + }, + }, + tile = { + layer = { + a = { + colors = '4bpp', + specifyColors = false, + moveIndividual = 'w', + independent = 'w', + rotate = true, + scale = true, + shear = true, + affine = true, + size = { + default = { + width = 64, + height = 64, + }, + bigW = { + width = 128, + height = 32, + }, + }, + }, + b = { + colors = '4bpp', + specifyColors = false, + moveIndividual = false, + independent = false, + rotate = true, + scale = true, + shear = true, + affine = true, + size = { + default = { + width = 64, + height = 64, + }, + bigW = { + width = 128, + height = 32, + }, + }, + }, + w = { + colors = '4bpp', + specifyColors = false, + moveIndividual = 'a', + independent = 'a', + rotate = false, + scale = false, + shear = false, + affine = false, + size = { + default = { + width = 32, + height = 32, + }, + bigW = { + width = 64, + height = 32, + }, + }, + }, + }, + }, +} diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/ym7101.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/information_only/ym7101.lua index b733c70..b733c70 100644 --- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/ym7101.lua +++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/graphics/information_only/ym7101.lua |