HI I'm making a small 2d game as my first project and I found this cool example online at https://ebiten.org/examples/sprites.html.
I'm just wondering what the meaning and purpose of vx, and vy is in the sprite structure (code snippet below). Thanks!
type Sprite struct {
imageWidth int
imageHeight int
x int
y int
vx int
vy int
angle int
}