mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 11:33:28 +00:00
26 lines
885 B
JavaScript
26 lines
885 B
JavaScript
var Phaser;
|
|
(function (Phaser) {
|
|
(function (Physics) {
|
|
/// <reference path="../../_definitions.ts" />
|
|
/**
|
|
* Phaser - Physics - Projection
|
|
*/
|
|
(function (Projection) {
|
|
var AABBFull = (function () {
|
|
function AABBFull() {
|
|
}
|
|
AABBFull.Collide = function (x, y, obj, t) {
|
|
var l = Math.sqrt(x * x + y * y);
|
|
|
|
obj.reportCollisionVsWorld(x, y, x / l, y / l, t);
|
|
|
|
return Phaser.Physics.AABB.COL_AXIS;
|
|
};
|
|
return AABBFull;
|
|
})();
|
|
Projection.AABBFull = AABBFull;
|
|
})(Physics.Projection || (Physics.Projection = {}));
|
|
var Projection = Physics.Projection;
|
|
})(Phaser.Physics || (Phaser.Physics = {}));
|
|
var Physics = Phaser.Physics;
|
|
})(Phaser || (Phaser = {}));
|