Home - Fr5ctal-Dev/pygame3d GitHub Wiki
Pygame 3D Docs
Welcome to the Pygame3D wiki! In this wiki, I will be going through the module and teaching you how to use it.
What is Pygame3D?
Pygame3D is a open-source, cross-platform python module for 3D rendering in PyGame. It is extremely easy to use and integrates perfectly into PyGame. In this documentation, I will be going through this module and how to use it in your PyGame application.
Installation
Pygame3D almost works on any platform, from Windows to Mac to Linux. To install this module, simply go to your terminal and install it using the Python Package Manager.
pip install pygame3d
Once installed, you should be able to use it like any other python module!
Setup
To start using this module, create a new python file and write your standard PyGame initialisation code. You can learn more about PyGame at https://www.pygame.org/docs/ Once PyGame is set up, you can import pygame3d like so:
import pygame3d
You can run the code and there should not be any errors.
Congratulations, you have setup your first Pygame3D application! Though it's nothing much, you will be learning more about this module.