Merge branch 'dev' of https://github.com/GoodBoyDigital/pixi.js into dev
This commit is contained in:
commit
f2c6d1427b
6 changed files with 397 additions and 302 deletions
|
@ -1,4 +1,4 @@
|
|||
Pixi Renderer [](https://travis-ci.org/GoodBoyDigital/pixi.js)
|
||||
Pixi Renderer
|
||||
=============
|
||||
|
||||

|
||||
|
|
650
bin/pixi.dev.js
650
bin/pixi.dev.js
File diff suppressed because it is too large
Load diff
32
bin/pixi.js
32
bin/pixi.js
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "pixi.js",
|
||||
"version": "1.4.3",
|
||||
"version": "1.5.0",
|
||||
|
||||
"main": "bin/pixi.js",
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "pixi.js",
|
||||
"version": "1.4.3",
|
||||
"version": "1.5.0",
|
||||
"description": "Pixi.js is a fast lightweight 2D library that works across all devices.",
|
||||
|
||||
"author": "Mat Groves",
|
||||
|
|
|
@ -89,7 +89,7 @@ PIXI.InteractionManager = function(stage)
|
|||
* The css style of the cursor that is being used
|
||||
* @property currentCursorStyle
|
||||
* @type String
|
||||
*
|
||||
*
|
||||
*/
|
||||
this.currentCursorStyle = 'inherit';
|
||||
|
||||
|
@ -97,7 +97,7 @@ PIXI.InteractionManager = function(stage)
|
|||
* Is set to true when the mouse is moved out of the canvas
|
||||
* @property mouseOut
|
||||
* @type Boolean
|
||||
*
|
||||
*
|
||||
*/
|
||||
this.mouseOut = false;
|
||||
};
|
||||
|
@ -270,9 +270,6 @@ PIXI.InteractionManager.prototype.update = function()
|
|||
|
||||
// loop through interactive objects!
|
||||
var length = this.interactiveItems.length;
|
||||
|
||||
|
||||
|
||||
var cursor = 'inherit';
|
||||
var over = false;
|
||||
|
||||
|
@ -298,7 +295,6 @@ PIXI.InteractionManager.prototype.update = function()
|
|||
|
||||
if(!item.__isOver)
|
||||
{
|
||||
|
||||
if(item.mouseover)item.mouseover(this.mouse);
|
||||
item.__isOver = true;
|
||||
}
|
||||
|
@ -319,7 +315,6 @@ PIXI.InteractionManager.prototype.update = function()
|
|||
this.currentCursorStyle = cursor;
|
||||
this.interactionDOMElement.style.cursor = cursor;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -717,4 +712,4 @@ PIXI.InteractionManager.prototype.onTouchEnd = function(event)
|
|||
this.pool.push(touchData);
|
||||
this.touchs[touchEvent.identifier] = null;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue