mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
The src/system folder has been removed and all files relocated to the src/utils folder. This doesn't change anything from an API point of view, but did change the grunt build scripts slightly.
This commit is contained in:
parent
9b4bb1bdd8
commit
265501b4af
9 changed files with 5 additions and 6 deletions
|
@ -318,6 +318,7 @@ You can read all about the philosophy behind Lazer [here](http://phaser.io/news/
|
|||
* TypeScript definitions fixes and updates (thanks )
|
||||
* Docs typo fixes (thanks )
|
||||
* The InputHandler.flagged property has been removed. It was never used internally, or exposed via the API, so was just overhead.
|
||||
* The src/system folder has been removed and all files relocated to the src/utils folder. This doesn't change anything from an API point of view, but did change the grunt build scripts slightly.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
"./src/physics/",
|
||||
"./src/plugins/",
|
||||
"./src/sound/",
|
||||
"./src/system/",
|
||||
"./src/tilemap/",
|
||||
"./src/time/",
|
||||
"./src/tween/",
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
"./src/particles/",
|
||||
"./src/physics/",
|
||||
"./src/sound/",
|
||||
"./src/system/",
|
||||
"./src/tilemap/",
|
||||
"./src/time/",
|
||||
"./src/tween/",
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[
|
||||
"src/system/DOM.js"
|
||||
"src/utils/DOM.js"
|
||||
]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[
|
||||
"src/system/Device.js",
|
||||
"src/system/Canvas.js",
|
||||
"src/system/RequestAnimationFrame.js"
|
||||
"src/utils/Device.js",
|
||||
"src/utils/Canvas.js",
|
||||
"src/utils/RequestAnimationFrame.js"
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue