pygame scroll code example
Example: pygame scroll event
if e.type == pygame.MOUSEBUTTONDOWN:
if e.button == 4: scroll_y = min(scroll_y + 15, 0)
if e.button == 5: scroll_y = max(scroll_y - 15, -300)
if e.type == pygame.MOUSEBUTTONDOWN:
if e.button == 4: scroll_y = min(scroll_y + 15, 0)
if e.button == 5: scroll_y = max(scroll_y - 15, -300)