[deploy] Merge pull request #31 from KiwanoEngine/configure_ci
[chore] minor fixes
This commit is contained in:
commit
0dbdf4ffc8
23
README.md
23
README.md
|
|
@ -13,10 +13,20 @@ Kiwano-Core is a game irrelevant lib that provide a lot useful tools can be used
|
||||||
|
|
||||||
It's still under heavy developing. I write it and use it to developy my own tiny games.
|
It's still under heavy developing. I write it and use it to developy my own tiny games.
|
||||||
|
|
||||||
You can move to [Kiwano Demos](https://github.com/kiwanogame/KiwanoDemos) repository to see how to use Kiwano implement simple games.
|
You can move to [Kiwano Demos](https://github.com/kiwanogame/KiwanoDemos) repository to see how to use Kiwano to implement simple games.
|
||||||
|
|
||||||
More docs and examples will be added later.
|
More docs and examples will be added later.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
* Scene management
|
||||||
|
* Transitions between scenes
|
||||||
|
* Actions behaviours
|
||||||
|
* Buttons and menus
|
||||||
|
* Texture atlas support
|
||||||
|
* Audio support
|
||||||
|
* Custom data storage
|
||||||
|
* Direct2D based
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
### Dev Environment
|
### Dev Environment
|
||||||
|
|
@ -40,17 +50,8 @@ More docs and examples will be added later.
|
||||||
5. Right-click `References` and choose `Add Reference`, select `kiwano` project
|
5. Right-click `References` and choose `Add Reference`, select `kiwano` project
|
||||||
6. Now you can build your own applications based on Kiwano source code !
|
6. Now you can build your own applications based on Kiwano source code !
|
||||||
|
|
||||||
## Features
|
|
||||||
* Scene management
|
|
||||||
* Transitions between scenes
|
|
||||||
* Actions behaviours
|
|
||||||
* Buttons and menus
|
|
||||||
* Texture atlas support
|
|
||||||
* Audio support
|
|
||||||
* Custom data storage
|
|
||||||
* Direct2D based
|
|
||||||
|
|
||||||
## Next plan
|
## Next plan
|
||||||
|
* GUI system
|
||||||
* Physical engine
|
* Physical engine
|
||||||
* Particle system
|
* Particle system
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -93,6 +93,7 @@
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||||
<TreatWarningAsError>true</TreatWarningAsError>
|
<TreatWarningAsError>true</TreatWarningAsError>
|
||||||
|
<DebugInformationFormat>None</DebugInformationFormat>
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||||
<AdditionalIncludeDirectories>../src/</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>../src/</AdditionalIncludeDirectories>
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
<MinimalRebuild>false</MinimalRebuild>
|
||||||
|
|
|
||||||
|
|
@ -57,9 +57,9 @@ nuget {
|
||||||
title: Kiwano Game Framework;
|
title: Kiwano Game Framework;
|
||||||
authors: Nomango;
|
authors: Nomango;
|
||||||
owners: Nomango;
|
owners: Nomango;
|
||||||
licenseUrl: "https://github.com/Nomango/Kiwano/blob/master/LICENSE";
|
licenseUrl: "https://github.com/KiwanoEngine/Kiwano/blob/master/LICENSE";
|
||||||
projectUrl: "https://github.com/Nomango/Kiwano";
|
projectUrl: "https://github.com/KiwanoEngine/Kiwano";
|
||||||
iconUrl: "https://github.com/Nomango/Kiwano/raw/master/logo/logo_square.png";
|
iconUrl: "https://github.com/KiwanoEngine/Kiwano/raw/master/logo/logo_square.png";
|
||||||
description: A simple game framework for C++;
|
description: A simple game framework for C++;
|
||||||
releaseNotes: "Initial release of a Nuget package for Kiwano Game Engine";
|
releaseNotes: "Initial release of a Nuget package for Kiwano Game Engine";
|
||||||
copyright: Copyright 2019;
|
copyright: Copyright 2019;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue