New features ๐โ
- The
Latex
node now supports tweening:#800Press play to preview the animationimport ...
export default makeScene2D(function* (view) {
const tex = createRef<Latex>();
view.add(<Latex ref={tex} tex="{{y=}}{{a}}{{x^2}}" fill="white" />);
yield* waitFor(0.2);
yield* tex().tex('{{y=}}{{a}}{{x^2}} + {{bx}}', 1);
yield* waitFor(0.2);
yield* tex().tex(
'{{y=}}{{\\left(}}{{a}}{{x^2}} + {{bx}}{{\\over 1}}{{\\right)}}',
1,
);
yield* waitFor(0.2);
yield* tex().tex('{{y=}}{{a}}{{x^2}}', 1);
}); ?render
and?present
url parameters can be used to immediately start rendering or presenting when opening the editor.#631
Fixed bugs ๐โ
Txt
nodes properly support tweening emojis.#1085- Fix stack overflow caused by restoring a
Code
node#1084 - Prevent invalid cache sizes.#1083
- Fix line tweening.#1075
- Fix text alignment.#1061