I want to make a two-part animation for an entity.
- Animation position from right to left.
- Rotate the object 180 degrees.
The issue is that after the position animation plays, then the rotation animation either skips to the last frame of the animation, or it doesn’t play.
I even tried removing the first animation before playing the second one, but it still didn’t work.
The good thing is that it is an easy issue to recreate. Here’s my script if someone wants to test this in an empty project:
// This is a component file. You can use this file to define a custom component for your project.
// This component will appear as a custom component in the editor.
import * as ecs from '@8thwall/ecs' // This is how you access the ecs library.
ecs.registerComponent({
name: 'Animation',
schema: {
startingX: ecs.f32,
startingY: ecs.f32,
startingZ: ecs.f32,
},
schemaDefaults: {
startingX: 2,
startingY: 0.5,
startingZ: 0,
},
data: {
// Add data that cannot be configured outside of the component.
},
add: (world, component) => {
const {eid, schemaAttribute} = component
const PlayShowScoreAnimation = () => {
const {startingX, startingY, startingZ} = schemaAttribute.get(eid)
const cursor = schemaAttribute.cursor(eid)
// Position Animation (Move from right to left)
ecs.PositionAnimation.set(world, eid, {
fromX: startingX,
fromY: startingY,
fromZ: startingZ,
toX: 0,
toY: startingY,
toZ: startingZ,
easeIn: true,
easeOut: true,
loop: false,
easingFunction: 'Quadratic',
duration: 2000,
})
// Rotation Animation (Rotate 180 degrees in Y)
const playSecondAnim = () => {
console.log('started second anim')
ecs.PositionAnimation.remove(world, eid)
ecs.RotateAnimation.set(world, eid, {
fromX: 0,
fromY: 0,
fromZ: 0,
toX: 0,
toY: 180,
toZ: 0,
easeIn: true,
easeOut: true,
easingFunction: 'Quadratic',
duration: 2000,
loop: false,
})
}
world.time.setTimeout(playSecondAnim, 2000)
}
PlayShowScoreAnimation()
},
})