Skip to content

Latest commit

 

History

History
77 lines (62 loc) · 2.89 KB

README.md

File metadata and controls

77 lines (62 loc) · 2.89 KB

Bamboo

What is Bamboo

Bamboo is a lightweight simulation engine that supports high-fidelity graphics rendering, and will mainly focus on AIGC and cloud rendering technologies in the future. Bamboo uses vulkan as the only graphics/computing api, and is written in C++17. 1

2

3

Features

  • UE-like Editor
  • Flexible panel docking
  • Static mesh rendering
  • Skeletal mesh rendering
  • Asset drag-drop importing
  • Asset drag-drop placing
  • Pixel-perfect picking and outline highlighting
  • 3D translation/rotation/scale gizmos
  • Reflection and serialization system
  • Physically-Based Rendering
  • Deferred and forward mixing rendering paths
  • Multiple light types(Directional/Sky/Point/Spot)
  • Shadow rendering for every light type
  • Postprocessing(Color Grading)

How to build

I don't want to build anyway

Well, if you're using Windows, you can download the prebuild engine zip file(Bamboo.zip) in the release page:)

Supported Platforms

  • Windows
  • Linux(WIP)
  • MacOS(ToDo)

Prerequites

Step 1. Clone the sources and create a build directory.

git clone https://github.com/Code-Guy/Bamboo.git
cd Bamboo
mkdir build && cd build

Step 2. Use CMake to generate project file using any desired generator.

cmake -G "Visual Studio 17 Win64" -S . -B build

Step 3. You can use any IDE according to you selected generator, but you can also just build straight from CMake.

cmake --build build --config Release

Step 4. Don't forget to download Bamboo.zip file from github repo, unzip it, and copy the asset folder to the path of BambooEditor.exe to cover the existing one, then we can run the Bamboo editor finally!

External libraries

All external libraries' source codes have been integrated into this repo, so there is no need to clone those libraries manually:)