Skip to content

An Open Source C# 3D Game Engine under MIT license, inspired by Unity and featuring a complete editor and built on Silk.NET

License

Notifications You must be signed in to change notification settings

ProwlEngine/Prowl

Repository files navigation

Github top languages GitHub version GitHub license GitHub issues GitHub stars Discord

🎮 An Open Source Unity-like Engine! 🎮

  1. About The Project
  2. Features
  3. Getting Started
  4. Roadmap
  5. Contributing
  6. Acknowledgments
  7. License
  8. Dependencies

📝 About The Project 📝

Prowl is an open-source, MIT-licensed game engine developed in pure C# in .NET 8, (which surprisingly has no runtime fees believe it or not! 😮). It aims to provide a seamless transition for developers familiar with Unity by maintaining a similar API while also following KISS and staying as small and customizable as possible. The goal is a viable open-source Unity alternative, ideally, Unity projects can port over with as little resistance as possible.

Screenshot 2024-06-27 172952 Screenshot 2024-06-27 172106
image image
image image
UntitledFLightModel Untitled

✨ Features ✨

  • General:

    • Cross-Platform! Windows, Linux & Mac!
    • Unity-like Editor & Scripting API
    • C# Scripting
    • Gameobject & Component structure
    • A Powerful Custom UI Library
      • Same Library for Ingame and Editor UI
      • 3D Drawing in UI used for Gizmo's
      • Immediate Mode with retained properties
    • .NET 8
    • Editor with support for Editor Scripts and Custom Editors
    • Physics (Bepu Physics 2)
      • Colliders: Box, Sphere, Capsule, Cylinder, Mesh Collider
      • Rigidbody-based Character Controller
    • Unity-like Coroutines
    • Playtest directly in Editor
    • ScriptableObjects
    • Projects & Project Settings
    • Unity-like Serializer to create In-Memory Graphs
      • Graph -> Custom Text Format
      • Graph -> Binary
    • Fully 64-bit using Doubles
    • Large World Coordinates Support
      • Camera Relative Rendering
    • Scene System
    • Modular Audio Backend
      • OpenAL
      • Currently only supports .wav files
    • Prefabs
    • Build System - Build to Standalone Application
      • Packed Asset files
      • Less than 15mb builds - currently working on removing 10mb, Almost done!
      • Only exports used assets
      • Supports Windows, Mac & Linux
  • Graphics Rendering:

    • Modular Graphics Backend
      • OpenGL
    • PBR (Physically Based Rendering) using Cook-Torrance BRDF
      • Albedo Map
      • Normal Map
      • Roughness Map
      • Metallic Map
      • Ambient Occclusion Map
      • Emission Map
    • Deferred Renderer
    • Point, Spot, and Directional Lights
    • Shadow Mapping + Contact Hardening (Variable Penumbra)
    • Post Processing
      • HDR with Tonemapping (Melon, Aces, Reinhard, Uncharted, Filmic)
      • Bokeh Depth of Field
      • Screen Space Reflections
      • Kawase Multi-Pass Bloom
      • Temporal Anti-Aliasing
    • Stochastic Transparency
    • Adjustable Render Resolutions per camera
    • Dedicated Shadow Pass for Shaders
    • Procedural Skybox with Skybox-Blended Fog
    • GPU Skinned Mesh Rendering
    • Skeletal Animations
  • Asset Pipeline:

    • A Powerful Asset Pipeline with a very similar structure to unity
    • Meta Files & Reference by GUID
    • Import Caching
    • Support for Custom Importers
    • Supports many major file formats via ImageMagick, Assimp, etc
    • Sub-Assets, Assets stored inside other assets
    • Dependency Tracking

(back to top)

🚀 Getting Started 🚀

Getting Prowl up and running is super easy!

Note: There are no official releases yet so you need to download this repository to use Prowl!

Prerequisites

Installation

  1. Clone the repo
  2. Open .sln file with Visual Studio Version 17.8.0+
  3. That's it! 😄 🎉

(back to top)

🗺️ Roadmap 🗺️

Engine

  • 🛠️ Cross Platform
    • ✔️ Windows
    • ✔️ MacOS
    • ✔️ Linux
    • ❌ Andriod
    • ❌ iOS
    • ❌ Web
  • ✔️ UI Engine
  • ❌ VR Support
  • ❌ Navmesh and AI Agents
  • ❌ Networking Solution

Rendering

  • ❌ SSAO, Screen-Space Decals, etc.
  • ❌ Realtime GI
  • ❌ Lightmaps and Light Probes
  • ❌ Cascaded shadow mapping
  • ❌ Particle System
  • ❌ Terrain Engine

Editor

  • ❌ Package Manager (Packages partially implemented)
  • ❌ Animation Tools
  • ❌ Live Collaborative Tools
  • ❌ Visual Scripting
  • ❌ Material Node Editor
  • ❌ 2D Support

See the open issues for a full list of proposed features (and known issues).

(back to top)

🤝 Contributing 🤝

🚀 Welcome to the Prowl community! We're thrilled that you're interested in contributing.

We're not too proud to admit it – we need your help. 🆘

Developing a game engine is a colossal task, and we can't do it alone. We need passionate developers, designers, testers, and documentation enthusiasts, people like you to help make Prowl the best it can be. 💪

How You Can Contribute

Code Contributions 💻

Whether you're a seasoned developer or just getting started, your code contributions are invaluable. We have a list of open issues that you can tackle, or feel free to propose your own improvements.

Bug Reports 🐛

Encountered a bug? We want to know! Submit detailed bug reports on our issue tracker to help us squash those pesky bugs.

Feature Requests 💡

Have a fantastic idea for a new feature? Share it with us! Open a feature request and let's discuss how we can make Prowl even better.

Spread the Word 📣

Not a developer? No problem! You can still contribute by spreading the word. Share your experiences with Prowl on social media, blogs, or forums. Let the world know about the exciting things happening here.

Contributor Recognition 🏆

We're not just asking for contributors; we're asking for partners in this journey. Every small contribution is a step toward realizing Prowl.

All contributors will be acknowledged in our Acknowledgments section.

Thank you for considering contributing to Prowl. Together, let's build something amazing!

(back to top)

🙏 Acknowledgments 🙏

  • Hat tip to the creators of Raylib, While we are no longer based upon it, it has shaved off hours of development time getting the engine to a usable state.
  • Some ideas/code have been taken from the amazing 2D Engine Duality.

(back to top)

Contributors 🌟

License 📜

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Dependencies 📦

Runtime

Editor

(back to top)