Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Unitychantoonshaderver2_project | 2,999 | 10 months ago | 8 | ShaderLab | ||||||
UnityChanToonShaderVer2 Project / v.2.0.9 Release | ||||||||||
Lume | 1,082 | 7 | 4 | 3 days ago | 134 | July 29, 2019 | 110 | mit | TypeScript | |
Create 3D web applications with HTML. Bring a new depth to your DOM! | ||||||||||
Uraymarching | 1,037 | 2 | a year ago | 5 | May 08, 2022 | 9 | mit | HLSL | ||
Raymarching Shader Generator in Unity | ||||||||||
Limonengine | 536 | 6 months ago | 46 | lgpl-3.0 | C++ | |||||
3D FPS game engine with full dynamic lighting and shadows | ||||||||||
Gpu Gems Book Source Code | 464 | 5 years ago | C++ | |||||||
:cd: CD Content ( Source Code ) Collection of Book <GPU Gems > 1~ 3 | 《GPU精粹》 1~ 3 随书CD(源代码)珍藏 | ||||||||||
Hybridrenderingengine | 404 | 4 years ago | mit | C++ | ||||||
Clustered Forward/Deferred renderer with Physically Based Shading, Image Based Lighting and a whole lot of OpenGL. | ||||||||||
2d Light Of Sight Unity | 312 | 8 years ago | 7 | other | C# | |||||
A plugin for creating 2D lighting & shadows, and line of sight effects in Unity3d. | ||||||||||
Nuomodelviewer | 285 | 6 days ago | bsd-3-clause | C++ | ||||||
A simple Wavefront OBJ viewer. | ||||||||||
Vqengine Legacy | 265 | 3 years ago | n,ull | gpl-3.0 | C++ | |||||
DirectX 11 Renderer written in C++11 | ||||||||||
Penumbra | 252 | 2 | 1 | a year ago | 18 | August 02, 2022 | 20 | mit | C# | |
2D lighting with soft shadows for MonoGame |
Limon is a multi platform 3D game engine mainly focusing on first person games. Focus of its development is ease of use and ease of study.
For details check out the project web site
Prebuilt binaries for Windows, Linux and MacOS can be found here
Documentation is served on readthedocs
If you want to chat, we have a Discord channel
For a demonstration, check out the video :
For features, check out features video:
Step 1) Open Terminal, then copy and paste the following command
$ sudo apt install cmake git libassimp-dev libbullet-dev libsdl2-dev libsdl2-image-dev libfreetype6-dev libtinyxml2-dev libglew-dev build-essential libglm-dev
Step 2) Since GitHub is limiting LFS bandwidth, it is removed. Cloning the LimonEngine repository should also include all data needed:
$ git clone https://github.com/enginmanap/limonEngine.git && cd limonEngine && git submodule update --init
Step 3) Next, we need to navigate to the directory run cmake:
$ mkdir build && cd build && cmake ../ && cd ..
Step 4) Finally, we need to navigate to the build directory, make the source and copy the Data
directory to the build
directory:
$ cd build && make && cp -a ../Data .
Windows platform is compiled using MSYS2. after installing MSYS2 as any Windows application, open up the msys2-terminal, and install the dependencies:
$ pacman -S cmake mingw-w64-x86_64-make mingw-w64-x86_64-gcc mingw-w64-x86_64-gdb cmake mingw-w64-x86_64-assimp cmake mingw-w64-x86_64-bullet mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_image mingw-w64-x86_64-tinyxml2 mingw-w64-x86_64-glew mingw-w64-x86_64-glm mingw-w64-x86_64-freetype
after that, you can use step 2 - 4 of Ubuntu instructions, on the same terminal.
./Data/Maps/World001.xml
$ ./LimonEngine ./Data/Maps/World001.xml
0
switches to debug mode, renders physics collision meshes and disconnects player from physics (flying and passing trough objects)F2
key switches to editor mode, which allows creating maps.+
and -
changes mouse sensitivity.wasd
for walking around and mouse for looking around as usual.libcustomTriggers.dll
for Windows, libcustomTriggers.so
for GNU/Linux and libcustomTriggers.dylib
for macOS. If you use an customisation in a map and library is missing, that customisation wont work, but rest of the map will.Details in the documentation