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
|
||||||
=============
|
=============
|
||||||
|
|
||||||

|

|
||||||
|
|
466
bin/pixi.dev.js
466
bin/pixi.dev.js
File diff suppressed because it is too large
Load diff
14
bin/pixi.js
14
bin/pixi.js
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "pixi.js",
|
"name": "pixi.js",
|
||||||
"version": "1.4.3",
|
"version": "1.5.0",
|
||||||
|
|
||||||
"main": "bin/pixi.js",
|
"main": "bin/pixi.js",
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "pixi.js",
|
"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.",
|
"description": "Pixi.js is a fast lightweight 2D library that works across all devices.",
|
||||||
|
|
||||||
"author": "Mat Groves",
|
"author": "Mat Groves",
|
||||||
|
|
|
@ -270,9 +270,6 @@ PIXI.InteractionManager.prototype.update = function()
|
||||||
|
|
||||||
// loop through interactive objects!
|
// loop through interactive objects!
|
||||||
var length = this.interactiveItems.length;
|
var length = this.interactiveItems.length;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var cursor = 'inherit';
|
var cursor = 'inherit';
|
||||||
var over = false;
|
var over = false;
|
||||||
|
|
||||||
|
@ -298,7 +295,6 @@ PIXI.InteractionManager.prototype.update = function()
|
||||||
|
|
||||||
if(!item.__isOver)
|
if(!item.__isOver)
|
||||||
{
|
{
|
||||||
|
|
||||||
if(item.mouseover)item.mouseover(this.mouse);
|
if(item.mouseover)item.mouseover(this.mouse);
|
||||||
item.__isOver = true;
|
item.__isOver = true;
|
||||||
}
|
}
|
||||||
|
@ -319,7 +315,6 @@ PIXI.InteractionManager.prototype.update = function()
|
||||||
this.currentCursorStyle = cursor;
|
this.currentCursorStyle = cursor;
|
||||||
this.interactionDOMElement.style.cursor = cursor;
|
this.interactionDOMElement.style.cursor = cursor;
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue