You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If your game window is very easily frozen but the training is still running, the solution is here.
Wrapped Game Code\tetris_fun.py needs to add one line as shown below,
... snip ...
def frame_step(self,input):
# add this line
pygame.event.pump()
self.movingLeft = False
self.movingRight = False
... snip ...
If your game window is very easily frozen but the training is still running, the solution is here.
Wrapped Game Code\tetris_fun.py needs to add one line as shown below,
Thanks to LeoLiu8023Am at
http://www.icourse163.org/learn/BIT-1001872001?tid=1001965001#/learn/forumdetail?pid=1003592809
The text was updated successfully, but these errors were encountered: