Godot Engine
Godot is a fully featured, open source, MIT licensed game engine. It focuses on having great tools, and a visual oriented workflow that can export to PC, Mobile and Web platforms.
FPL base is a low level C++ game library developed by Google. It is open source and can be extended by the user or by adding other libraries in the FPL suite:...
fplbase is the lowest level game library we use at fpl taking care of input, rendering, and resource loading (shaders, textures, meshes etc.). it also offers useful functionality for dealing with android input devices and hmds, and threaded resource loading.
fplbase is not meant to be an "engine", in that it doesn't dictate anything about how your game is structured. it is meant to shorten the distance between an empty project and "drawing stuff on screen", by providing the typical minimal functionality you don't get if you work on top of raw opengl.
it is also not meant to be a platform abstraction library (like sdl, glfw, glut etc). we actually use sdl underneath for that purpose.
other fpl libraries can be used on top of fplbase, for example flatui can provide font rendering and game uis.
fplbase is available as open source from github under the apache license, v2 (see license.txt).
game-engine game-creation game-development game-development-library