Go to file
Nomango 44abd8f220 [chore] update logos 2022-06-07 17:57:24 +08:00
.github/ISSUE_TEMPLATE Easy2D project renamed to Kiwano 2019-08-06 13:34:06 +08:00
.vscode update Duration 2020-10-09 23:10:30 +08:00
logo [chore] update logos 2022-06-07 17:57:24 +08:00
projects add Interpolator 2020-10-19 18:41:02 +08:00
scripts support vs2022 2022-05-31 14:53:07 +08:00
src [deploy] support holding objects 2022-06-07 15:46:14 +08:00
.clang-format Sort include files 2020-01-21 11:05:28 +08:00
.editorconfig [deploy] Change source code charset to gb2312 2020-03-19 14:28:50 +08:00
.gitignore update EventListener 2020-10-10 15:34:00 +08:00
CMakeLists.txt add CMakeLists.txt files 2020-05-15 16:29:02 +08:00
Doxyfile [deploy] publish v1.2.0 2020-10-20 11:34:17 +08:00
LICENSE Update LICENSE 2018-10-16 16:44:55 +08:00
README-zh.md [chore] Update README-zh.md 2020-02-22 23:59:10 +08:00
README.md [chore] update README.md 2020-02-02 18:00:55 +08:00
appveyor.yml [deploy] update github token 2022-05-31 15:55:27 +08:00

README.md

Kiwano Logo

Kiwano Game Engine

Build status GitHub release GitHub license

English | 简体中文

Introduction

Kiwano is a open-source 2D C++ game engine, only support win32 platform.

Kiwano-Core is a game irrelevant lib that provide a lot useful tools can be used in other projects. I made a lot wheels to make cpp simpler to use.

It's still under heavy developing. I write it and use it to developy my own tiny games.

You can move to Kiwano Demos repository to see how to use Kiwano to implement simple games.

More docs and examples will be added later.

Features

  • Scene management
  • Transitions between scenes
  • Action behaviours
  • Buttons and menus
  • Texture atlas support
  • Audio support
  • Custom data storage
  • Physical engine (based on Box2D)
  • GUI system (based on ImGui)

Install

Dev Environment

  • Win8 or Greater (Win10 recommended)
  • Visual Studio 2015 or Greater

Install with NuGet

  1. Open your Visual Studio solution
  2. In Solution Explorer, right-click References and choose Manage NuGet Packages
  3. Select the Browse tab, search for kiwano, select that package in the list, and select Install
  4. Have a good trip with Kiwano !

Install with source code

  1. Clone or download source code from Github repository
  2. Open your Visual Studio solution, right-click your solution in Solution Explorer, select Add and then Existing item
  3. Select .vcxproj files in /projects folder which you downloaded in 1st step
  4. Right-click your project and choose Properties, select C\C++ => General, add the root directory of kiwano project to the Additional include directory field
  5. Right-click References and choose Add Reference, select kiwano project
  6. Now you can build your own applications based on Kiwano source code !

Next plan

  • Cross-platform
  • Particle system

Contact