Skip to content

Commit e7a9b96

Browse files
committed
Final release 1.1.4 examples finished.
1 parent 02b75b9 commit e7a9b96

26 files changed

Lines changed: 2348 additions & 946 deletions

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ New Examples:
147147
* Input - Touch Joystick example showing how to use the clay.io virtual game controller (thanks gabehollombe)
148148
* Games - Matching Pairs by Patrick OReilly.
149149
* Games - Simon Says by Patrick OReilly.
150-
* Games - Wabbits by Patrick OReilly.
151150
* Tweens - Example showing how to use the tween events, onStart, onLoop and onComplete.
152151
* Display - Pixi Render Texture. A Phaser conversion of the Pixi.js Render Texture example.
153152
* Input - 5 new examples showing how to use the Gamepad API (thanks Karl Macklin)

build/build.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?php
2+
// NOTE: This script is deprecated. The build process is managed by grunt now.
3+
// Keeping this file here for those that I know use it, but if you're trying to build fresh, use grunt.
4+
25
date_default_timezone_set('Europe/London');
36

47
// Get the version number

build/config.php

Lines changed: 97 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php
2-
// All JS files in build order.
3-
// Much easier for debugging re: line numbers
4-
if (!isset($path))
5-
{
6-
$path = '..';
7-
}
2+
// All JS files in build order.
3+
// Much easier for debugging re: line numbers
4+
if (!isset($path))
5+
{
6+
$path = '..';
7+
}
88

9-
echo <<<EOL
9+
echo <<<EOL
1010
1111
<script src="$path/src/Intro.js"></script>
1212
<script src="$path/src/pixi/Pixi.js"></script>
@@ -55,97 +55,97 @@
5555
<script src="$path/src/pixi/utils/EventTarget.js"></script>
5656
<script src="$path/src/pixi/utils/Polyk.js"></script>
5757
58-
<script src="$path/src/core/Camera.js"></script>
59-
<script src="$path/src/core/State.js"></script>
60-
<script src="$path/src/core/StateManager.js"></script>
61-
<script src="$path/src/core/LinkedList.js"></script>
62-
<script src="$path/src/core/Signal.js"></script>
63-
<script src="$path/src/core/SignalBinding.js"></script>
64-
<script src="$path/src/core/Filter.js"></script>
65-
<script src="$path/src/core/Plugin.js"></script>
66-
<script src="$path/src/core/PluginManager.js"></script>
67-
<script src="$path/src/core/Stage.js"></script>
68-
<script src="$path/src/core/Group.js"></script>
69-
<script src="$path/src/core/World.js"></script>
70-
<script src="$path/src/core/Game.js"></script>
71-
72-
<script src="$path/src/input/Input.js"></script>
73-
<script src="$path/src/input/Key.js"></script>
74-
<script src="$path/src/input/Keyboard.js"></script>
75-
<script src="$path/src/input/Mouse.js"></script>
76-
<script src="$path/src/input/MSPointer.js"></script>
77-
<script src="$path/src/input/Pointer.js"></script>
78-
<script src="$path/src/input/Touch.js"></script>
79-
<script src="$path/src/input/Gamepad.js"></script>
58+
<script src="$path/src/core/Camera.js"></script>
59+
<script src="$path/src/core/State.js"></script>
60+
<script src="$path/src/core/StateManager.js"></script>
61+
<script src="$path/src/core/LinkedList.js"></script>
62+
<script src="$path/src/core/Signal.js"></script>
63+
<script src="$path/src/core/SignalBinding.js"></script>
64+
<script src="$path/src/core/Filter.js"></script>
65+
<script src="$path/src/core/Plugin.js"></script>
66+
<script src="$path/src/core/PluginManager.js"></script>
67+
<script src="$path/src/core/Stage.js"></script>
68+
<script src="$path/src/core/Group.js"></script>
69+
<script src="$path/src/core/World.js"></script>
70+
<script src="$path/src/core/Game.js"></script>
71+
72+
<script src="$path/src/input/Input.js"></script>
73+
<script src="$path/src/input/Key.js"></script>
74+
<script src="$path/src/input/Keyboard.js"></script>
75+
<script src="$path/src/input/Mouse.js"></script>
76+
<script src="$path/src/input/MSPointer.js"></script>
77+
<script src="$path/src/input/Pointer.js"></script>
78+
<script src="$path/src/input/Touch.js"></script>
79+
<script src="$path/src/input/Gamepad.js"></script>
8080
<script src="$path/src/input/SinglePad.js"></script>
8181
<script src="$path/src/input/GamepadButton.js"></script>
82-
<script src="$path/src/input/InputHandler.js"></script>
83-
84-
<script src="$path/src/gameobjects/Events.js"></script>
85-
<script src="$path/src/gameobjects/GameObjectFactory.js"></script>
86-
<script src="$path/src/gameobjects/BitmapData.js"></script>
87-
<script src="$path/src/gameobjects/Sprite.js"></script>
88-
<script src="$path/src/gameobjects/TileSprite.js"></script>
89-
<script src="$path/src/gameobjects/Text.js"></script>
90-
<script src="$path/src/gameobjects/BitmapText.js"></script>
91-
<script src="$path/src/gameobjects/Button.js"></script>
92-
<script src="$path/src/gameobjects/Graphics.js"></script>
93-
<script src="$path/src/gameobjects/RenderTexture.js"></script>
94-
95-
<script src="$path/src/system/Canvas.js"></script>
96-
<script src="$path/src/system/StageScaleMode.js"></script>
97-
<script src="$path/src/system/Device.js"></script>
98-
<script src="$path/src/system/RequestAnimationFrame.js"></script>
99-
100-
<script src="$path/src/math/RandomDataGenerator.js"></script>
101-
<script src="$path/src/math/Math.js"></script>
102-
<script src="$path/src/math/QuadTree.js"></script>
103-
104-
<script src="$path/src/geom/Circle.js"></script>
105-
<script src="$path/src/geom/Point.js"></script>
106-
<script src="$path/src/geom/Rectangle.js"></script>
107-
<script src="$path/src/geom/Line.js"></script>
108-
109-
<script src="$path/src/net/Net.js"></script>
110-
111-
<script src="$path/src/tween/TweenManager.js"></script>
112-
<script src="$path/src/tween/Tween.js"></script>
113-
<script src="$path/src/tween/Easing.js"></script>
114-
115-
<script src="$path/src/time/Time.js"></script>
116-
<script src="$path/src/time/Timer.js"></script>
117-
<script src="$path/src/time/TimerEvent.js"></script>
118-
119-
<script src="$path/src/animation/AnimationManager.js"></script>
120-
<script src="$path/src/animation/Animation.js"></script>
121-
<script src="$path/src/animation/Frame.js"></script>
122-
<script src="$path/src/animation/FrameData.js"></script>
123-
<script src="$path/src/animation/AnimationParser.js"></script>
124-
125-
<script src="$path/src/loader/Cache.js"></script>
126-
<script src="$path/src/loader/Loader.js"></script>
127-
<script src="$path/src/loader/LoaderParser.js"></script>
128-
129-
<script src="$path/src/sound/Sound.js"></script>
130-
<script src="$path/src/sound/SoundManager.js"></script>
131-
132-
<script src="$path/src/utils/Debug.js"></script>
133-
<script src="$path/src/utils/Color.js"></script>
134-
135-
<script src="$path/src/physics/arcade/SAT.js"></script>
136-
<script src="$path/src/physics/arcade/ArcadePhysics.js"></script>
137-
<script src="$path/src/physics/arcade/Body.js"></script>
138-
139-
<script src="$path/src/particles/Particles.js"></script>
140-
<script src="$path/src/particles/arcade/ArcadeParticles.js"></script>
141-
<script src="$path/src/particles/arcade/Emitter.js"></script>
142-
143-
<script src="$path/src/tilemap/Tile.js"></script>
144-
<script src="$path/src/tilemap/Tilemap.js"></script>
145-
<script src="$path/src/tilemap/TilemapLayer.js"></script>
146-
<script src="$path/src/tilemap/TilemapParser.js"></script>
147-
<script src="$path/src/tilemap/Tileset.js"></script>
148-
149-
<script src="$path/src/PixiPatch.js"></script>
82+
<script src="$path/src/input/InputHandler.js"></script>
83+
84+
<script src="$path/src/gameobjects/Events.js"></script>
85+
<script src="$path/src/gameobjects/GameObjectFactory.js"></script>
86+
<script src="$path/src/gameobjects/BitmapData.js"></script>
87+
<script src="$path/src/gameobjects/Sprite.js"></script>
88+
<script src="$path/src/gameobjects/TileSprite.js"></script>
89+
<script src="$path/src/gameobjects/Text.js"></script>
90+
<script src="$path/src/gameobjects/BitmapText.js"></script>
91+
<script src="$path/src/gameobjects/Button.js"></script>
92+
<script src="$path/src/gameobjects/Graphics.js"></script>
93+
<script src="$path/src/gameobjects/RenderTexture.js"></script>
94+
95+
<script src="$path/src/system/Canvas.js"></script>
96+
<script src="$path/src/system/StageScaleMode.js"></script>
97+
<script src="$path/src/system/Device.js"></script>
98+
<script src="$path/src/system/RequestAnimationFrame.js"></script>
99+
100+
<script src="$path/src/math/RandomDataGenerator.js"></script>
101+
<script src="$path/src/math/Math.js"></script>
102+
<script src="$path/src/math/QuadTree.js"></script>
103+
104+
<script src="$path/src/geom/Circle.js"></script>
105+
<script src="$path/src/geom/Point.js"></script>
106+
<script src="$path/src/geom/Rectangle.js"></script>
107+
<script src="$path/src/geom/Line.js"></script>
108+
109+
<script src="$path/src/net/Net.js"></script>
110+
111+
<script src="$path/src/tween/TweenManager.js"></script>
112+
<script src="$path/src/tween/Tween.js"></script>
113+
<script src="$path/src/tween/Easing.js"></script>
114+
115+
<script src="$path/src/time/Time.js"></script>
116+
<script src="$path/src/time/Timer.js"></script>
117+
<script src="$path/src/time/TimerEvent.js"></script>
118+
119+
<script src="$path/src/animation/AnimationManager.js"></script>
120+
<script src="$path/src/animation/Animation.js"></script>
121+
<script src="$path/src/animation/Frame.js"></script>
122+
<script src="$path/src/animation/FrameData.js"></script>
123+
<script src="$path/src/animation/AnimationParser.js"></script>
124+
125+
<script src="$path/src/loader/Cache.js"></script>
126+
<script src="$path/src/loader/Loader.js"></script>
127+
<script src="$path/src/loader/LoaderParser.js"></script>
128+
129+
<script src="$path/src/sound/Sound.js"></script>
130+
<script src="$path/src/sound/SoundManager.js"></script>
131+
132+
<script src="$path/src/utils/Debug.js"></script>
133+
<script src="$path/src/utils/Color.js"></script>
134+
135+
<script src="$path/src/physics/arcade/SAT.js"></script>
136+
<script src="$path/src/physics/arcade/ArcadePhysics.js"></script>
137+
<script src="$path/src/physics/arcade/Body.js"></script>
138+
139+
<script src="$path/src/particles/Particles.js"></script>
140+
<script src="$path/src/particles/arcade/ArcadeParticles.js"></script>
141+
<script src="$path/src/particles/arcade/Emitter.js"></script>
142+
143+
<script src="$path/src/tilemap/Tile.js"></script>
144+
<script src="$path/src/tilemap/Tilemap.js"></script>
145+
<script src="$path/src/tilemap/TilemapLayer.js"></script>
146+
<script src="$path/src/tilemap/TilemapParser.js"></script>
147+
<script src="$path/src/tilemap/Tileset.js"></script>
148+
149+
<script src="$path/src/PixiPatch.js"></script>
150150
EOL;
151151
?>

0 commit comments

Comments
 (0)