top of page
Pygame game engine docs
Vocabulary - meaning for common irregular types in the docs:
Vector2 like - an iterable type with 2 indexes. For example: pygame.Vector2(x, y), (x, y), [x, y].
Color3 like - an iterable type with 3 indexes or pygame color. For example: pygame.Color(r, g, b), (r, g, b), [r, g, b].
Color4 like - an iterable type with 4 indexes. For example: pygame.Color(r, g, b, a), (r, g, b, a), [r, g, b,a].
bottom of page
