Scale game window outside cordova
This commit is contained in:
parent
06ff99769d
commit
aba41086e7
2 changed files with 24 additions and 28 deletions
|
@ -141,14 +141,13 @@ StreamWebAudio.prototype._onCordovaResume = function () {
|
|||
|
||||
document.addEventListener("backbutton", function(event){
|
||||
event.preventDefault();
|
||||
});
|
||||
});
|
||||
|
||||
// =====================
|
||||
// Scale game canvas
|
||||
// =====================
|
||||
|
||||
document.addEventListener("deviceready", () => {
|
||||
Graphics._updateRealScale = function () {
|
||||
Graphics._updateRealScale = function () {
|
||||
if (this._stretchEnabled) {
|
||||
var h = window.innerWidth / this._width;
|
||||
var v = window.innerHeight / this._height;
|
||||
|
@ -158,8 +157,7 @@ document.addEventListener("deviceready", () => {
|
|||
} else {
|
||||
this._realScale = this._scale;
|
||||
}
|
||||
};
|
||||
})
|
||||
};
|
||||
|
||||
// ===========================
|
||||
// Gamepad tips on default
|
||||
|
|
|
@ -141,14 +141,13 @@ StreamWebAudio.prototype._onCordovaResume = function () {
|
|||
|
||||
document.addEventListener("backbutton", function(event){
|
||||
event.preventDefault();
|
||||
});
|
||||
});
|
||||
|
||||
// =====================
|
||||
// Scale game canvas
|
||||
// =====================
|
||||
|
||||
document.addEventListener("deviceready", () => {
|
||||
Graphics._updateRealScale = function () {
|
||||
Graphics._updateRealScale = function () {
|
||||
if (this._stretchEnabled) {
|
||||
var h = window.innerWidth / this._width;
|
||||
var v = window.innerHeight / this._height;
|
||||
|
@ -158,8 +157,7 @@ document.addEventListener("deviceready", () => {
|
|||
} else {
|
||||
this._realScale = this._scale;
|
||||
}
|
||||
};
|
||||
})
|
||||
};
|
||||
|
||||
// ===========================
|
||||
// Gamepad tips on default
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue