summaryrefslogtreecommitdiff
path: root/src/hardware_data/scripts/load/graphics/vdp_ym2602_mode4.lua
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-17 21:20:32 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-17 21:20:32 -0300
commit52ce3e69e97aed2a5db7f6a7e4209961a145cdcc (patch)
treef01a2e214be3782b6c4d07d553788b9974333464 /src/hardware_data/scripts/load/graphics/vdp_ym2602_mode4.lua
parent5409b18096a10cb621e8692b17c0b67e7f0b3624 (diff)
Update graphics modes
Diffstat (limited to 'src/hardware_data/scripts/load/graphics/vdp_ym2602_mode4.lua')
-rw-r--r--src/hardware_data/scripts/load/graphics/vdp_ym2602_mode4.lua101
1 files changed, 101 insertions, 0 deletions
diff --git a/src/hardware_data/scripts/load/graphics/vdp_ym2602_mode4.lua b/src/hardware_data/scripts/load/graphics/vdp_ym2602_mode4.lua
new file mode 100644
index 0000000..b988a2e
--- /dev/null
+++ b/src/hardware_data/scripts/load/graphics/vdp_ym2602_mode4.lua
@@ -0,0 +1,101 @@
+return {
+ screen = {
+ ntsc = {
+ width = 256,
+ height = 192,
+ fps = 29.97,
+ origin = {
+ x = 0,
+ y = 0,
+ },
+ },
+ pal = {
+ width = 256,
+ height = 192,
+ fps = 25,
+ origin = {
+ x = 0,
+ y = 0,
+ },
+ },
+ },
+ colours = {
+ total = 64,
+ limit = 31,
+ background = false,
+ transparent = 'transparentColour',
+ },
+ meshes = false,
+ shaders = {
+ api = false,
+ version = false,
+ fragment = false,
+ vectex = false,
+ geometry = false,
+ tessellation = false,
+ },
+ physic = false,
+ sprites = {
+ onScreen = 64,
+ onLine = 8,
+ palettes = {
+ specify = true,
+ {
+ colours = 15,
+ keys = 1,
+ },
+ },
+ transform = {
+ move = true,
+ rotate = false,
+ scale = '2x,flip',
+ shear = false,
+ affine = false,
+ },
+ sizes = {
+ {
+ width = 8,
+ height = 8,
+ },
+ {
+ width = 16,
+ height = 16,
+ },
+ },
+ },
+ tiles = {
+ layers = {
+ {
+ unique = 488,
+ independent = false,
+ palettes = {
+ specify = true,
+ {
+ colours = 15,
+ keys = 1,
+ },
+ sprite = {
+ colours = 15,
+ keys = 1,
+ },
+ },
+ mirror = true,
+ transform = {
+ individual = true,
+ move = true,
+ rotate = false,
+ scale = '2x,flip',
+ shear = false,
+ affine = false,
+ },
+ sizes = {
+ {
+ width = 8,
+ height = 8,
+ },
+ },
+ map = false,
+ },
+ },
+ },
+}