This repository has been archived on 2024-01-17. You can view files and clone it, but cannot push or open issues or pull requests.
kibodo/key.go

33 lines
476 B
Go

package kibodo
import (
"github.com/hajimehoshi/ebiten/v2"
)
// Key represents a virtual key.
type Key struct {
LowerLabel string
UpperLabel string
LowerInput *Input
UpperInput *Input
x, y int
w, h int
pressed bool
pressedTouchID ebiten.TouchID
}
// Input represents the input event from a key press.
type Input struct {
Rune rune
Key ebiten.Key
}
func (i *Input) String() string {
if i.Rune > 0 {
return string(i.Rune)
}
return i.Key.String()
}