Skip to main content

A game engine made with pygame.

Project description

AerForge

A game engine made with pygame.

Getting Started

  1. Install Python
  2. Open cmd/terminal and type:
pip install AerForge

Examples

Creating a window

from aerforge import *

forge = Forge()

@forge.event
def update():
    pass

forge.run()

Creating a cube

from aerforge import *

forge = Forge()

class Cube(Entity):
    def __init__(self):
        super().__init__(
            window = forge,
            shape = shape.Rect,
            width = 20,
            height = 20,
            x = 0,
            y = 0,
            color = color.Color(0, 255, 255)
        )

        self.center()

cube = Cube()

@forge.event
def update():
    pass

forge.run()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aerforge-0.3.5.tar.gz (65.0 kB view details)

Uploaded Source

File details

Details for the file aerforge-0.3.5.tar.gz.

File metadata

  • Download URL: aerforge-0.3.5.tar.gz
  • Upload date:
  • Size: 65.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for aerforge-0.3.5.tar.gz
Algorithm Hash digest
SHA256 0a1db5a49876f1d94455bad4db404d8434c5ae4c3befbc27436fe7729bb143c8
MD5 57bf73c496d8109b38a342c34c5181b1
BLAKE2b-256 9db95b9eff29f940c0191c890f8b92ad0fa4c9885c16cfd560bac4158501860f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page