Annoying lags/stutters in an android game

后端 未结 5 1276
轮回少年
轮回少年 2020-12-03 07:42

I just started with game development in android, and I\'m working on a super simple game.

The game is basically like flappy bird.

I managed to get everyt

5条回答
  •  孤城傲影
    2020-12-03 08:10

    One of the most common causes of slow-down and stuttering in a game is the graphics pipeline. Game logic is a lot faster to process than it is to draw (in general) so you want to make sure that you draw everything in the most efficient way possible. Below you can find some tips on how to achieve this.

    some suggetion to make it better

    https://www.yoyogames.com/tech_blog/30

提交回复
热议问题