A RPG Framework for Love2D
Go to file
Kazhnuz Klappsthul f347f47aab fix: port the option menu to the new menusystem 2021-01-30 09:19:37 +01:00
.vscode fix: add globals 2020-11-09 15:58:30 +01:00
birb fix: reset view on page change 2021-01-29 21:54:34 +01:00
examples fix: port the option menu to the new menusystem 2021-01-30 09:19:37 +01:00
CHANGELOG.md improvement: manage music via core.music 2020-08-09 14:51:52 +02:00
CREDITS.md feat(timer): add variable interpolation support via tween.lua 2019-09-08 16:18:32 +02:00
LICENSE LICENCE: update year and name 2019-03-16 13:16:32 +01:00
README.md meta: adapt readme 2020-04-05 18:48:57 +02:00
code-of-conduct.md meta: add a code of conduct 2019-06-11 19:48:56 +02:00

README.md

Birb Love2D Engine

Birb aim to be an integrated, simple engine for love2D. It aim to work as a set of managers to automatically handle inputs, screen, and several utilities to make game developpement easier and less repetitive.

Birb use Classic as its base Object.

How to load GameCore

The birb engine must be located in the birb/ folder to work. After that, all you have to do is to load a gamecore based engine and then.

Note : the birb and utils global namespace will be used by birb.

require "birb"

function love.load()
  birb.startCore()
end