fixed some performance things

This commit is contained in:
MrDonuts
2023-11-20 23:25:38 -05:00
parent a875a4ed57
commit 7af60685db
7 changed files with 15 additions and 21 deletions

View File

@@ -67,5 +67,5 @@ func (s *PlayLevelState) Update() {
func (s *PlayLevelState) Draw(screen *ebiten.Image) {
geom.GameGrid.Draw(screen)
geom.MainPlayer.Draw(screen)
score.ScoreMngr.Draw(screen)
score.ScoreMngr.Draw(screen) //something in here is causing big time CPU usage
}