|
@@ -195,17 +195,14 @@
|
|
|
"additionalProperties" : false,
|
|
|
"required" : [ "width", "height", "scaling" ],
|
|
|
"properties" : {
|
|
|
- "width" : { "type" : "number" },
|
|
|
- "height" : { "type" : "number" },
|
|
|
- "scaling" : { "type" : "number" }
|
|
|
- },
|
|
|
- "defaultIOS" : {"width" : 800, "height" : 600, "scaling" : 200 },
|
|
|
- "defaultAndroid" : {"width" : 800, "height" : 600, "scaling" : 200 },
|
|
|
- "default" : {"width" : 800, "height" : 600, "scaling" : 100 }
|
|
|
+ "width" : { "type" : "number", "default" : 800 },
|
|
|
+ "height" : { "type" : "number", "default" : 600 },
|
|
|
+ "scaling" : { "type" : "number", "default" : 0 }
|
|
|
+ }
|
|
|
},
|
|
|
"reservedWidth" : {
|
|
|
"type" : "number",
|
|
|
- "defaultIOS" : 0.1, // iOS camera cutout / notch is excluded from available area by SDL
|
|
|
+ "defaultIOS" : 0.1, // iOS camera cutout / notch is not excluded from available area by SDL, handle it this way
|
|
|
"default" : 0
|
|
|
},
|
|
|
"fullscreen" : {
|