mirror of
https://github.com/wassname/phaser.git
synced 2026-08-14 12:40:17 +08:00
RequestAnimationFrame done and optimised massively. PluginManager added (but needs testing). Game now fleshed out with all the state changing and core loop, also optimised heavily. Also Pixi integration started and the basics are working well :)
This commit is contained in:
@@ -3,13 +3,18 @@
|
||||
<head>
|
||||
<title>phaser.js - a(nother) new beginning</title>
|
||||
<script src="../src/Phaser.js"></script>
|
||||
<script src="../src/system/RequestAnimationFrame.js"></script>
|
||||
<script src="../src/system/Device.js"></script>
|
||||
<script src="../src/core/SignalBinding.js"></script>
|
||||
<script src="../src/core/Signal.js"></script>
|
||||
<script src="../src/math/RandomDataGenerator.js"></script>
|
||||
<script src="../src/math/Math.js"></script>
|
||||
<script src="../src/geom/Point.js"></script>
|
||||
<script src="../src/geom/Circle.js"></script>
|
||||
<script src="../src/net/Net.js"></script>
|
||||
<script src="../src/tween/TweenManager.js"></script>
|
||||
<script src="../src/tween/Tween.js"></script>
|
||||
<script src="../src/tween/Easing.js"></script>
|
||||
<script src="../src/time/Time.js"></script>
|
||||
<script src="../src/animation/Animation.js"></script>
|
||||
<script src="../src/animation/Frame.js"></script>
|
||||
@@ -25,14 +30,15 @@
|
||||
|
||||
var game = new Phaser.Game(this, '', 800, 600);
|
||||
|
||||
var data = Phaser.Math.sinCosGenerator(10);
|
||||
var data = game.math.sinCosGenerator(10);
|
||||
|
||||
console.log('Sin', data.sin);
|
||||
console.log('Cos', data.cos);
|
||||
|
||||
console.log('Shift value 1', Phaser.Math.shift(data.sin));
|
||||
console.log('Shift value 2', Phaser.Math.shift(data.sin));
|
||||
console.log('Shift value 3', Phaser.Math.shift(data.sin));
|
||||
console.log('Shift value 1', game.math.shift(data.sin));
|
||||
console.log('Shift value 2', game.math.shift(data.sin));
|
||||
console.log('Shift value 3', game.math.shift(data.sin));
|
||||
console.log('Shift value 4', game.math.shift(data.sin));
|
||||
|
||||
console.log('Sin', data.sin);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user