Skip to content

Commit

Permalink
0.9.3 fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
playif committed Aug 24, 2014
1 parent 02f3d20 commit 78d4f99
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
21 changes: 16 additions & 5 deletions README.md
Expand Up @@ -21,15 +21,15 @@ Features:
* gameobject (100%)
* physics: arcade physics (missing p2.js)
* geom (100%): finished
* input : keyboard, mouse, touch (missing gamepad)
* input (90%): keyboard, mouse, touch (missing gamepad)
* loader (100%)
* math (100%)
* particles (100%)
* sound & music (100%)
* system (100%)
* time (100%)
* tilemap (100%)
* tween (100%) (use Mirrors API) (thanks to https://github.com/xaguzman/tween-engine-dart)
* tween (100%) (use Mirrors API)
* utils (100%)


Expand All @@ -44,6 +44,12 @@ please check the [online demo][3] or download examples from [github repo][2]

```dart
import "package:play_phaser/phaser.dart";
main() {
Game game = new Game(800, 480, WEBGL, '', new basic_01_load_an_image());
}
class basic_01_load_an_image extends State {
Text text;
Expand Down Expand Up @@ -73,9 +79,7 @@ class basic_01_load_an_image extends State {
}
main() {
Game game = new Game(800, 480, WEBGL, '', new basic_01_load_an_image());
}
```

Expand All @@ -94,6 +98,13 @@ The number of examples for each class.
* tilemaps * 2
* tweens

Change log
==========

0.9.3
* Fix bugs.


TODO
=========
* Build more examples to comprehensively test the play_phaser game engine.
Expand Down
1 change: 0 additions & 1 deletion example/main.dart
@@ -1,5 +1,4 @@
library example;
import "package:play_pixi/pixi.dart" as PIXI;
import "package:play_phaser/phaser.dart";
import "dart:html" as dom;

Expand Down

0 comments on commit 78d4f99

Please sign in to comment.