Skip to content

0.0.6

Choose a tag to compare

@bea4dev bea4dev released this 04 Jan 10:50
· 21 commits to main since this release

Changes in 0.0.6

  • Added <Img/> for drawing images (using this component can fix flickering during rendering).
  • Added progress: Variable<number> to <DrawText/> and <DrawTex/>, so it can be used with useAnimation.
  • useAnimation() and useVariable() now support RGBA color codes.

Example:

const color = useVariable("#FFFFFF10")

useAnimation(async (context) => {
  await context.move(color).to("#000000FF", seconds(1))
})