Skip to content

Version 0.7.0 - alpha.0

Latest
Compare
Choose a tag to compare
@sheepbox8646 sheepbox8646 released this 27 Nov 12:57
· 46 commits to master since this release

Version 0.7.0 - Alpha.0

We entirely refactor the animation system in this version! 🎉

Now you can use the new APIs of animation!

rect.moveTo(200, 300)
rect.rotateTo(180)

and the old APIs are also can be used! You needn't worry about updating!

Even as we change the getting way of a widget:

<script setup lang="ts">
const rect = useWidget<RectMixin>()
</script>

<template>
  <Rect :widget="rect" :width="200" :height="200"/>
</template>

In further, we will complete the new APIs to forward to version 0.7.0!