| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Depth. Layers. Worlds.
Parlyn Engine is a free and open-source game engine designed primarily for modern 2.5D development, while keeping real 3D available wherever a project benefits from it.
Parlyn treats sprites, billboards, layered depth, lighting and real 3D geometry as parts of the same scene workflow. 2.5D is not a secondary editor mode: it is a first-class engine concept.
Current status: v0.5.0 GitHub Preview — early engine/editor foundation. APIs and project formats may still change.
Parlyn is being built around a simple idea: developers should be able to use the production advantages of 2.5D without giving up modern presentation or the freedom to mix in 3D.
The long-term direction includes:
Parlyn owns its scene data and node model. Current first-class node types include:
Billboard2_5D already demonstrates one of Parlyn's core goals: 2.5D elements can coexist naturally with meshes, lights and cameras inside one scene.
v0.4.0 introduces the first real Parlyn project model.
A project contains:
My Project/
├── parlyn.project.json
├── scenes/
│ └── Main.parlyn-scene.json
├── assets/
└── .parlyn/
Projects can be created and reopened through native desktop dialogs. Scene data remains plain, readable JSON during this early phase.
The editor can now import common asset files into a Parlyn project's assets/ directory and display them in the Asset panel.
Initial accepted file types include:
This is the storage/import foundation, not yet a complete runtime importer. Loading textures, models and audio into runtime nodes is a later milestone.
v0.5.0 introduces the first Parlyn module registry and lifecycle. Modules can be registered with validated metadata and enabled or disabled through the editor. The bundled Example Module exists only to test this lifecycle; larger gameplay systems are not being pretended into existence before their foundations are ready.
Parlyn's long-term rule is simple:
Parlyn gives you a strong starting point, not a fixed path.
Official Parlyn systems will be maintained options, not mandatory workflows. Developers remain free to replace them with their own solutions or compatible community modules.
Parlyn deliberately owns its higher-level engine concepts instead of exposing renderer-native objects as project data.
Parlyn Engine
│
├── Project / Scene / Nodes / Assets / Editor
│
└── RendererBackend
│
└── ThreeRenderer (current backend)
THREE.js is currently used as the rendering implementation. It is not the definition of Parlyn's scene graph or project format.
This boundary is intentional: future renderer work should remain possible without redesigning the editor or invalidating Parlyn scene files.
See docs/ARCHITECTURE.md.
Parlyn does not define 2.5D as "fake 3D". It treats it as a flexible production approach.
A scene may, for example, combine:
The engine should provide useful building blocks without dictating how developers must combine them.
Parlyn aims to work well with legally licensed third-party assets and neutral file formats.
The intended pipeline is:
External asset
↓
Importer
↓
Parlyn metadata
↓
Optimized cache (where useful)
↓
Scene / runtime
Parlyn will not assume that an asset purchased from another marketplace automatically permits use outside its original ecosystem. Developers remain responsible for the license of third-party content.
Requirements:
Install dependencies:
npm installRun the editor:
npm run devRun structural checks:
npm run checkA bundled test project is available under samples/Parlyn-Test-Project. Use Open Project and select that folder to exercise the current project, scene, node and asset foundations without preparing your own test content first.
Create a minified renderer bundle:
npm run build:renderer:releaseThe next engine milestones are intentionally foundation-heavy:
See docs/ROADMAP.md.
Parlyn is intended to remain free to use, free to modify and royalty-free under the MIT License.
The project may be supported voluntarily through donations and sponsorships. Optional ecosystem services, such as a future asset marketplace, may later help fund development without putting the engine itself behind a paywall.
Your support helps us continue developing Parlyn Engine as a free and open-source project. With your permission, supporters and sponsors may be acknowledged on a dedicated page, while major sponsors may also be featured at the end of this README.
Parlyn is public and open source, but core development is intentionally maintainer-led while the architecture is young.
Bug reports, reproducible test cases and thoughtful workflow feedback are welcome. Broader contribution rules will be introduced when the project is stable enough for outside contributions to be predictable rather than frustrating.
See CONTRIBUTING.md.
Parlyn Engine is released under the MIT License. See LICENSE.
Parlyn Engine — Depth. Layers. Worlds.
| Back | FazBrowse Home | New Git URL |