-
Notifications
You must be signed in to change notification settings - Fork 7.1k
/
Copy pathORIENTATION_CONST.js
67 lines (59 loc) · 1.46 KB
/
ORIENTATION_CONST.js
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
/**
* @author Richard Davey <[email protected]>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Phaser Scale Manager constants for orientation.
*
* @namespace Phaser.Scale.Orientation
* @memberof Phaser.Scale
* @since 3.16.0
*/
/**
* Phaser Scale Manager constants for orientation.
*
* To find out what each mode does please see [Phaser.Scale.Orientation]{@link Phaser.Scale.Orientation}.
*
* @typedef {Phaser.Scale.Orientation} Phaser.Scale.OrientationType
* @memberof Phaser.Scale
* @since 3.16.0
*/
module.exports = {
/**
* The primary landscape orientation.
*
* @name Phaser.Scale.Orientation.LANDSCAPE
* @type {string}
* @const
* @since 3.16.0
*/
LANDSCAPE: 'landscape-primary',
/**
* The secondary landscape orientation.
*
* @name Phaser.Scale.Orientation.LANDSCAPE_SECONDARY
* @type {string}
* @const
* @since 3.85.0
*/
LANDSCAPE_SECONDARY: 'landscape-secondary',
/**
* The primary portrait orientation.
*
* @name Phaser.Scale.Orientation.PORTRAIT
* @type {string}
* @const
* @since 3.16.0
*/
PORTRAIT: 'portrait-primary',
/**
* The secondary portrait orientation.
*
* @name Phaser.Scale.Orientation.PORTRAIT_SECONDARY
* @type {string}
* @const
* @since 3.16.0
*/
PORTRAIT_SECONDARY: 'portrait-secondary'
};