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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
[
{
"id" : "animation",
"type" : "ClutterTimeline",
"duration" : 5000,
"loop" : true
},
{
"id" : "root",
"type" : "ClutterGroup",
"x" : 50,
"y" : 40,
"children" : [
{
"type" : "ClutterTexture",
"filename" : "redhand.png",
"visible" : true,
"x" : 200,
"y" : 200,
"behaviours" : [
{
"type" : "ClutterBehaviourRotate",
"alpha" : { "timeline" : "animation", "mode" : "linear" }
}
]
},
{
"type" : "ClutterText",
"text" : "Clutter",
"font-name" : "Sans 60px",
"visible" : true,
"x" : 100,
"y" : 100,
"behaviours" : [
{
"type" : "ClutterBehaviourScale",
"x-scale-start" : 1.0,
"y-scale-start" : 1.0,
"x-scale-end" : 0.5,
"y-scale-end" : 0.5,
"alpha" : { "timeline" : "animation", "mode" : "easeOutSine" }
},
{
"type" : "ClutterBehaviourOpacity",
"opacity-start" : 100,
"opacity-end" : 255,
"alpha" : { "timeline" : "animation", "mode" : "linear" }
}
]
},
{
"type" : "ClutterText",
"text" : "Script",
"font-name" : "Sans 60px",
"color" : "blue",
"visible" : true,
"x" : 160,
"y" : 130,
"behaviours" : [
{
"type" : "ClutterBehaviourScale",
"x-scale-start" : 0.5,
"y-scale-start" : 0.5,
"x-scale-end" : 1.0,
"y-scale-end" : 1.0,
"alpha" : {"timeline" : "animation", "mode" : "easeInSine" }
},
{
"type" : "ClutterBehaviourOpacity",
"opacity-start" : 100,
"opacity-end" : 255,
"alpha" : { "timeline" : "animation", "mode" : "linear"}
}
]
},
{
"type" : "ClutterText",
"text" : "Viewer",
"font-name" : "Sans 60px",
"visible" : true,
"x" : 200,
"y" : 170,
"behaviours" : [
{
"type" : "ClutterBehaviourScale",
"x-scale-start" : 1.0,
"y-scale-start" : 1.0,
"x-scale-end" : 0.5,
"y-scale-end" : 0.5,
"alpha" : { "timeline" : "animation", "mode" : "easeOutSine" }
},
{
"type" : "ClutterBehaviourOpacity",
"opacity-start" : 100,
"opacity-end" : 255,
"alpha" : { "timeline" : "animation", "mode" : "linear" }
}
]
},
]
}
]
|