Answers for "pygame.display.flip vs update"

0

pygame.display.flip vs update

import pygame

pygame.display.flip() #will update the contents of the entire display
pygame.display.update() #allows to update a portion of the screen, 
#instead of the entire area of the screen. Passing no arguments, 
#updates the entire display
# Boutros
Posted by: Guest on March-12-2022

Code answers related to "pygame.display.flip vs update"

Python Answers by Framework

Browse Popular Code Answers by Language