summaryrefslogtreecommitdiff
path: root/clutter/tests/conform/scripts/test-animator-3.json
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2018-11-18 11:52:50 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2018-11-18 11:52:50 +0100
commit5f1410f96828eb54b0c6ed4d9ec51882f8549e4a (patch)
tree363f4a2eda7bb559ecb0be64a58a5512df2dffcb /clutter/tests/conform/scripts/test-animator-3.json
parent156aa3dd998f01c2bf4ef115876e416f5a51a919 (diff)
downloadmutter-wip/nielsdg/clutter-remove-deprecated.tar.gz
clutter: remove deprecated ClutterStage/ClutterAnimatorwip/nielsdg/clutter-remove-deprecated
Removing one without the other was quite the headache, so just remove both of them together instead.
Diffstat (limited to 'clutter/tests/conform/scripts/test-animator-3.json')
-rw-r--r--clutter/tests/conform/scripts/test-animator-3.json40
1 files changed, 0 insertions, 40 deletions
diff --git a/clutter/tests/conform/scripts/test-animator-3.json b/clutter/tests/conform/scripts/test-animator-3.json
deleted file mode 100644
index 26d779bee..000000000
--- a/clutter/tests/conform/scripts/test-animator-3.json
+++ /dev/null
@@ -1,40 +0,0 @@
-[
- {
- "type" : "ClutterRectangle",
- "id" : "foo",
- "x" : 0,
- "y" : 0,
- "width" : 100,
- "height" : 100
- },
- {
- "type" : "ClutterAnimator",
- "id" : "animator",
- "duration" : 1000,
-
- "properties" : [
- {
- "object" : "foo",
- "name" : "x",
- "ease-in" : true,
- "interpolation" : "linear",
- "keys" : [
- [ 0.0, "easeInCubic", 100.0 ],
- [ 0.2, "easeOutCubic", 150.0 ],
- [ 0.8, "linear", 200.0 ]
- ]
- },
- {
- "object" : "foo",
- "name" : "y",
- "ease-in" : true,
- "interpolation" : "linear",
- "keys" : [
- [ 0.0, "easeInCubic", 100.0 ],
- [ 0.2, "easeOutCubic", 150.0 ],
- [ 0.8, "linear", 200.0 ]
- ]
- }
- ]
- }
-]