8 Star 20 Fork 3

蓝飞 / playable.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 2.56 KB
一键复制 编辑 原始数据 按行查看 历史
Jealous 提交于 2019-03-01 16:21 . Updated README.md

playable.js

Build Status Coverage Status Version License Dependencies DevDependencies

A lightweight HTML5 game engine.

Installation

Webpack/Browserify

npm install playable.js

Direct <script> Include

Simply download and include with a script tag. playable will be registered as a global variable.

CDN

For prototyping or learning purposes, you can use the latest version with:

<script src="https://cdn.jsdelivr.net/npm/playable.js"></script>

For production, we recommend linking to a specific version number and build to avoid unexpected breakage from newer versions:

<script src="https://cdn.jsdelivr.net/npm/playable.js@3.4.5/dist/playable.min.js"></script>

You can browse the source of the NPM package at jsDelivr or unpkg.

Hello World

JavaScript

let stage = new playable.Stage();
let text = new playable.Text('Hello playable.js');
stage.addChild(text);

Try it on CodePen

TypeScript(Recommended)

class Main extends playable.Stage {
  
  public constructor() {
    super();
    let text = new playable.Text('Hello playable.js');
    this.addChild(text);
  }
  
}

new Main();

Try it on CodePen

Documentation

TypeScript
1
https://gitee.com/lanfei/playable.js.git
git@gitee.com:lanfei/playable.js.git
lanfei
playable.js
playable.js
master

搜索帮助