pyved-engine icon indicating copy to clipboard operation
pyved-engine copied to clipboard

a "manual buffer"-like behavior is impossible in web ctx

Open wkta opened this issue 10 months ago • 0 comments

example of the bug : image

while this snippet works OK in local ctx, in the web you won't see anything displayed on screen:

scr = pyv.surface_create((shared.SCR_WIDTH, shared.SCR_HEIGHT))
# ... do many operations that draw on scr, including pygame.draw.rect(scr, ...)
pass
# then finally: something like
view = pyv.get_surface()
view.blit(scr, (0, 5))
view.blit(shared.status_label, (0, 0))

Here, the variable scr was used as a manual buffer. This won't work in the current version of the KataGames system

wkta avatar Apr 12 '24 11:04 wkta