ResolutionPolicy 类型
模块: _decorator 父模块: cc
cc.ResolutionPolicy class is the root strategy class of scale strategy, its main task is to maintain the compatibility with Cocos2d-x
索引
属性(properties)
EXACT_FITNumberThe entire application is visible in the specified area without trying to preserve the original aspect ratio....NO_BORDERNumberThe entire application fills the specified area, without distortion but possibly with some cropping,...SHOW_ALLNumberThe entire application is visible in the specified area without distortion while maintaining the original...FIXED_HEIGHTNumberThe application takes the height of the design resolution size and modifies the width of the internal...FIXED_WIDTHNumberThe application takes the width of the design resolution size and modifies the height of the internal...UNKNOWNNumberUnknow policy
方法
constructorpreApplyManipulation before applying the resolution policyapplyFunction to apply this resolution policypostApplyManipulation after appyling the strategysetContainerStrategySetup the container's scale strategysetContentStrategySetup the content's scale strategy
Details
属性(properties)
EXACT_FIT
The entire application is visible in the specified area without trying to preserve the original aspect ratio.
Distortion can occur, and the application may appear stretched or compressed.
| meta | description |
|---|---|
| 类型 | Number |
| 定义于 | cocos2d/core/platform/CCView.js:1480 |
NO_BORDER
The entire application fills the specified area, without distortion but possibly with some cropping,
while maintaining the original aspect ratio of the application.
| meta | description |
|---|---|
| 类型 | Number |
| 定义于 | cocos2d/core/platform/CCView.js:1489 |
SHOW_ALL
The entire application is visible in the specified area without distortion while maintaining the original
aspect ratio of the application. Borders can appear on two sides of the application.
| meta | description |
|---|---|
| 类型 | Number |
| 定义于 | cocos2d/core/platform/CCView.js:1498 |
FIXED_HEIGHT
The application takes the height of the design resolution size and modifies the width of the internal
canvas so that it fits the aspect ratio of the device
no distortion will occur however you must make sure your application works on different
aspect ratios
| meta | description |
|---|---|
| 类型 | Number |
| 定义于 | cocos2d/core/platform/CCView.js:1507 |
FIXED_WIDTH
The application takes the width of the design resolution size and modifies the height of the internal
canvas so that it fits the aspect ratio of the device
no distortion will occur however you must make sure your application works on different
aspect ratios
| meta | description |
|---|---|
| 类型 | Number |
| 定义于 | cocos2d/core/platform/CCView.js:1518 |
UNKNOWN
Unknow policy
| meta | description |
|---|---|
| 类型 | Number |
| 定义于 | cocos2d/core/platform/CCView.js:1529 |
方法
constructor
| meta | description |
|---|---|
| 定义于 | cocos2d/core/platform/CCView.js:1402 |
参数列表
containerStgContainerStrategy The container strategycontentStgContentStrategy The content strategy
preApply
Manipulation before applying the resolution policy
| meta | description |
|---|---|
| 定义于 | cocos2d/core/platform/CCView.js:1421 |
参数列表
viewView The target view
apply
Function to apply this resolution policy The return value is {scale: [scaleX, scaleY], viewport: {cc.Rect}}, The target view can then apply these value to itself, it's preferred not to modify directly its private variables
| meta | description |
|---|---|
| 返回 | Object |
| 定义于 | cocos2d/core/platform/CCView.js:1431 |
参数列表
postApply
Manipulation after appyling the strategy
| meta | description |
|---|---|
| 定义于 | cocos2d/core/platform/CCView.js:1445 |
参数列表
viewView The target view
setContainerStrategy
Setup the container's scale strategy
| meta | description |
|---|---|
| 定义于 | cocos2d/core/platform/CCView.js:1455 |
参数列表
containerStgContainerStrategy
setContentStrategy
Setup the content's scale strategy
| meta | description |
|---|---|
| 定义于 | cocos2d/core/platform/CCView.js:1465 |
参数列表
contentStgContentStrategy