forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZOOM_CONST.js
More file actions
68 lines (60 loc) · 1.42 KB
/
Copy pathZOOM_CONST.js
File metadata and controls
68 lines (60 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Phaser Scale Manager constants for zoom modes.
*
* @namespace Phaser.Scale.Zoom
* @memberof Phaser.Scale
* @since 3.16.0
*/
/**
* Phaser Scale Manager constants for zoom modes.
*
* To find out what each mode does please see [Phaser.Scale.Zoom]{@link Phaser.Scale.Zoom}.
*
* @typedef {Phaser.Scale.Zoom} Phaser.Scale.ZoomType
* @memberof Phaser.Scale
* @since 3.16.0
*/
module.exports = {
/**
* The game canvas will not be zoomed by Phaser.
*
* @name Phaser.Scale.Zoom.NO_ZOOM
* @type {integer}
* @const
* @since 3.16.0
*/
NO_ZOOM: 1,
/**
* The game canvas will be 2x zoomed by Phaser.
*
* @name Phaser.Scale.Zoom.ZOOM_2X
* @type {integer}
* @const
* @since 3.16.0
*/
ZOOM_2X: 2,
/**
* The game canvas will be 4x zoomed by Phaser.
*
* @name Phaser.Scale.Zoom.ZOOM_4X
* @type {integer}
* @const
* @since 3.16.0
*/
ZOOM_4X: 4,
/**
* Calculate the zoom value based on the maximum multiplied game size that will
* fit into the parent, or browser window if no parent is set.
*
* @name Phaser.Scale.Zoom.MAX_ZOOM
* @type {integer}
* @const
* @since 3.16.0
*/
MAX_ZOOM: -1
};