hzengine-core
Version:
An Visual Novel Engine for Zepp OS
37 lines (33 loc) • 658 B
text/typescript
import { Profile } from "./animation.js";
export const ExampleProfile1: Profile = [
[ // alpha
{
frame: {
alpha: 0,
}
},
{
time: 0.5,
wrapper: "easein",
frame: {
alpha: 1,
}
}
],
[ // x
{
frame: {
xalign: -1,
xanchor: -1,
}
},
{
time: 1.0,
wrapper: "easein",
frame: {
xalign: 1,
xanchor: 1,
}
}
]
]