phaser/v3/src/state/components/Pause.js

12 lines
160 B
JavaScript
Raw Normal View History

var Pause = function (key)
{
var entry = this.getActiveState(key);
if (entry)
{
entry.state.sys.pause();
}
};
module.exports = Pause;