コード例 #1
0
ファイル: touches_mobile.go プロジェクト: hajimehoshi/ebiten
func updateTouches() {
	ts := []ui.Touch{}
	for id, position := range touches {
		ts = append(ts, touch{id, position})
	}
	ui.UpdateTouches(ts)
}
コード例 #2
0
ファイル: run.go プロジェクト: carriercomm/ebiten
func (e *eventDispatcher) updateTouches() {
	ts := []ui.Touch{}
	for id, position := range e.touches {
		ts = append(ts, touch{id, position})
	}
	ui.UpdateTouches(ts)
}