top of page

RGame

What is RGame?

RGame is a game engine meant to help young game developers grasp the concepts that are required for making a game. With RGame you can create anything from a simple window to a fun indie game. With it the difficult concepts that coding presents can be tackled easily with our hands-on tutorials. RGame requires little to no setup and can even be used online. Enough with the boring console let's have some fun.

Perquisites?

The only perquisite is a python integrated development environment. If you want to set-up your own you can install python onto your computer and either use the built-in python IDLE or I recommend downloading Visual Studio Code with some extentions for python. 

If you prefer not to set up and IDE on your computer you can use the online IDE called Replit. This will result lower performance but is easier to use.

How to Set-up RGame?

Python IDLE:

To set-up rgame in python IDLE run the following two lines of code in the interpreter:

import os

os.system("pip install --upgrade rgame")

Replit:

1) Make a new pygame project

2) Open the Console tab

3) Open the Output tab

4) Open the Shell tab

5) In the Shell tab enter the following code

pip install --upgrade rgame

bottom of page