mirror of
https://github.com/photonstorm/phaser
synced 2024-12-27 13:33:35 +00:00
12 lines
160 B
JavaScript
12 lines
160 B
JavaScript
|
var Pause = function (key)
|
||
|
{
|
||
|
var entry = this.getActiveState(key);
|
||
|
|
||
|
if (entry)
|
||
|
{
|
||
|
entry.state.sys.pause();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = Pause;
|