mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
c8d5703788
Verify that an Animation can be defined using ClutterScript. No initial/final state of the animation, yet.
15 lines
251 B
JSON
15 lines
251 B
JSON
{
|
|
"type" : "ClutterAnimation",
|
|
"id" : "test",
|
|
"mode" : "easeInCubic",
|
|
"duration" : 500,
|
|
"object" : {
|
|
"type" : "ClutterRectangle",
|
|
"id" : "rect",
|
|
"opacity" : 128,
|
|
"width" : 100,
|
|
"height" : 16,
|
|
"color" : "white"
|
|
},
|
|
}
|