https://github.com/MattRyder/GibEngine
Cross-platform OpenGL 3D game engine
https://github.com/MattRyder/GibEngine
3d-game-engine 3d-graphics cpp game-engine opengl
Last synced: 17 days ago
JSON representation
Cross-platform OpenGL 3D game engine
- Host: GitHub
- URL: https://github.com/MattRyder/GibEngine
- Owner: MattRyder
- Created: 2017-03-24T23:49:06.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-13T16:08:08.000Z (almost 7 years ago)
- Last Synced: 2024-12-06T19:12:25.165Z (6 months ago)
- Topics: 3d-game-engine, 3d-graphics, cpp, game-engine, opengl
- Language: C++
- Homepage:
- Size: 158 MB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeCppGameDev - GibEngine - platform OpenGL 3D game engine (Engines)
README
# GibEngine
-----------------------A 3D game engine, and associated world editor. Builds available for Windows, Ubuntu Linux.

| Windows | Linux | Codacy Grade |
| :------ | :---- | :----------- |
| [](https://ci.appveyor.com/project/MattRyder/gibengine) | [](https://travis-ci.org/MattRyder/GibEngine) | [](https://www.codacy.com/app/MattRyder/GibEngine?utm_source=github.com&utm_medium=referral&utm_content=MattRyder/GibEngine&utm_campaign=Badge_Grade)|# Requirements
* cmake > 3.1
* C++11 compatible compiler
* OpenGL 4.0 or OpenGL ES 3.0 compatible GPU# Build Instructions
## GNU/Linux
``` bash
git clone https://github.com/MattRyder/GibEngine.git
mkdir build
cd build
cmake ..
make
```## Windows, MSVC
``` bash
git clone https://github.com/MattRyder/GibEngine.git
mkdir build
cd build
cmake -G "Visual Studio 14 2015 Win64" ..
# Open GibEngine.sln within the `build` directory
```