summaryrefslogtreecommitdiff
path: root/tests/data/test-state-1.json
blob: 78ab5de89d43bdc60f6435d023fa6d2ba36c550c (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
[
  {
    "type" : "ClutterRectangle",
    "id" : "rect",
    "width" : 100,
    "height" : 100
  },
  {
    "type" : "ClutterState",
    "id" : "state",

    "transitions" : [
      {
        "source" : "base",
        "target" : "clicked",
        "duration" : 250,

        "keys" : [
          [ "rect", "opacity", "linear", 128 ]
        ]
      },
      {
        "source" : "clicked",
        "target" : "base",
        "duration" : 150,

        "keys" : [
          [ "rect", "opacity", "linear", 255 ]
        ]
      }
    ]
  }
]