move extra modules to modules folder; pull drawing functions into draw2d

This commit is contained in:
2025-01-29 11:53:18 -06:00
parent b561217073
commit b8857031f4
9 changed files with 230 additions and 370 deletions

View File

@@ -2,6 +2,11 @@ Prosperon is an opinionated Javascript-based runtime for making games, quickly.
With Javascript's C-like syntax, it makes it easy to make classic style games like Pacman or Fantasy Zone, without diving into Unity, Godot or Unreal Engine.
# API usage
A lot of the API usage is informed from 'duck typing'. If something "looks" like a camera - it can be used like one! If something "looks" like a sprite, it can be used like one! There are fast paths on nearly everything for well defined objects
Uniformity is prioritized.
# Gradual performance
Prosperon makes it easy to make something quickly, and if it runs well, you're golden! But if it's slow, there are a plethora of options to make it faster. Plus, with native C plugins, there is nothing that can't be figured out.