examples

input-point-goto.js

1
2
3
4
5
6
7
elem = display.emoji("🤩")

input.point((e) => {
  if (e.ended) {
    elem.goTo(e.position)
  }
})