summaryrefslogtreecommitdiff
path: root/src/information_only/scripts/load/graphics/tms9918_mode3.lua
blob: 6f55ac259a1e4c6feff35b1eb28c338bc40b4e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
return {
  screen = {
    default = {
      width  = 64,
      height = 48,
      fps    = 29.97,
      origin = {
        x = 0,
        y = 0,
      },
    },
    pal     = {
      width  = 64,
      height = 48,
      fps    = 25,
      origin = {
        x = 0,
        y = 0,
      },
    },
  },
  colors = {
    '5bpp',
    limit       = '4bpp',
    transparent = 'colorKey',
  },
  mesh   = false,
  api    = false,
  shader = {
    false,
    fragment = false,
  },
  physic = false,
  sprite = {
    true,
    colors = '0bpp',
    limits = {
      true,
      screen = 32,
      line   =  4,
    },
    rotate = false,
    scale  = false,
    shear  = false,
    affine = false,
    size   = {
      default = {
        width  =  8,
        height =  8,
      },
      big     = {
        width  = 16,
        height = 16,
      },
    },
  },
  tile   = {
    layers = 1,
    {
      tilesSet       = false,
      colors         = '4bpp',
      specifyColors  = false,
      moveIndividual = false,
      independent    = false,
      mirror         = false,
      rotate         = false,
      scale          = false,
      shear          = false,
      affine         = false,
      size           = {
        default = {
          width  = 4,
          height = 4,
        },
      },
    },
  },
}