summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/animation-keyframe-blendtree/main.qml4
-rw-r--r--tests/manual/animation-keyframe-simple/main.qml2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/animation-keyframe-blendtree/main.qml b/tests/manual/animation-keyframe-blendtree/main.qml
index 0c28b8fd3..abc63bffa 100644
--- a/tests/manual/animation-keyframe-blendtree/main.qml
+++ b/tests/manual/animation-keyframe-blendtree/main.qml
@@ -45,10 +45,10 @@ DefaultSceneEntity {
blendTree: LerpClipBlend {
blendFactor: 0.2
startClip: ClipBlendValue {
- clip: AnimationClip { source: "sliding-cube.json" }
+ clip: AnimationClipLoader { source: "sliding-cube.json" }
}
endClip: ClipBlendValue {
- clip: AnimationClip { source: "sliding-pulsing-cube.json" }
+ clip: AnimationClipLoader { source: "sliding-pulsing-cube.json" }
}
}
diff --git a/tests/manual/animation-keyframe-simple/main.qml b/tests/manual/animation-keyframe-simple/main.qml
index 17744209a..028427998 100644
--- a/tests/manual/animation-keyframe-simple/main.qml
+++ b/tests/manual/animation-keyframe-simple/main.qml
@@ -41,7 +41,7 @@ DefaultSceneEntity {
loops: 3
onRunningChanged: console.log("running = " + running)
- clip: AnimationClip {
+ clip: AnimationClipLoader {
source: "cubeanimation.json"
onDurationChanged: console.log("duration = " + duration)
}