Skip to main content

A Unity-like 3D engine in Python using pygame

Project description

GamEngine3D is a Python 3D engine for creating interactive 3D scenes. This README focuses on basic usage.

Quick Start

from gamengine3d import *

# 1. Initialize the engine
engine = Engine(1200, 800, background_color=Color.light_blue)

# 2. Create objects
floor = Cuboid(size=vector3d(5, 0.1, 5), color=Color.light_grey, name="Floor")
player = Cuboid(name="Player", color=Color.light_red, size=vector3d(0.2), pos=vector3d(0, 1))

# 3. Add objects to the engine
engine.add_object(floor)
engine.add_object(player)

# 4. Attach behavior to objects
player.attach("player_controller.py", engine.context)

# 5. Run the engine
engine.run(dynamic_view=True)

Notes

Engine: Manages rendering, lights, and the main loop.

Objects: Add cubes, spheres, or custom shapes with Cuboid(), Sphere(), etc.

Attach Scripts: Use .attach("script.py", context) to add movement, input, or custom logic.

Run: engine.run() starts the simulation; dynamic_view=True enables interactive camera movement.

Example: player_controller.py

from gamengine3d import *
import math

class PlayerController:
    def __init__(self, obj, context):
        self.obj = obj
        self.context = context
        self.speed = 1
        self.context.on_key_held("up", callback=self.move_forward, dt=True)

    def update(self, dt):
        pass  # called every frame

    def move_forward(self, dt):
        # simple forward movement
        yaw = math.radians(self.obj.rotation.z)
        forward = vector3d(-math.sin(yaw), 0, math.cos(yaw))
        self.obj.pos += forward * self.speed * dt

This minimal PlayerController shows how to attach a script to an object and respond to input.

You can run any built-in demo with gamengine3d demo <demo_name> and see all available options using gamengine3d demo -h.

The 2d version of gamengine3d is out under gamengine2d

Check out the full documentation for this package here: Package Docs

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

gamengine3d-1.20.0.tar.gz (416.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gamengine3d-1.20.0-py3-none-any.whl (442.9 kB view details)

Uploaded Python 3

File details

Details for the file gamengine3d-1.20.0.tar.gz.

File metadata

  • Download URL: gamengine3d-1.20.0.tar.gz
  • Upload date:
  • Size: 416.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for gamengine3d-1.20.0.tar.gz
Algorithm Hash digest
SHA256 5eb6cdb7809d6f010c0170ea9b0cc4bbca5cae0a9c8875e411c09b94a3312432
MD5 6481e14c1a09d02da2f079a9cd81e537
BLAKE2b-256 80c27578910457d807866562a8d6d0f9b959c5c49e0aa8f80979609a5472d9f2

See more details on using hashes here.

File details

Details for the file gamengine3d-1.20.0-py3-none-any.whl.

File metadata

  • Download URL: gamengine3d-1.20.0-py3-none-any.whl
  • Upload date:
  • Size: 442.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for gamengine3d-1.20.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7e08d0574435d32ac8321668bf990ca9e8503a444aea07ed9f3722548551cdc3
MD5 8159da81fe060ec16d907858b9a68740
BLAKE2b-256 d22dbce8ec0bcaa00e86bcc7c30eabe6e413d54e832db756f3f79a6d91a3f9a3

See more details on using hashes here.

Supported by

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