|
@@ -103,6 +103,11 @@ const InternalConfig = function (initConfig) { // eslint-disable-line no-unused-
|
|
* @type {Array.<string>}
|
|
* @type {Array.<string>}
|
|
*/
|
|
*/
|
|
persistentPaths: ['/userfs'],
|
|
persistentPaths: ['/userfs'],
|
|
|
|
+ /**
|
|
|
|
+ * @ignore
|
|
|
|
+ * @type {boolean}
|
|
|
|
+ */
|
|
|
|
+ persistentDrops: false,
|
|
/**
|
|
/**
|
|
* @ignore
|
|
* @ignore
|
|
* @type {Array.<string>}
|
|
* @type {Array.<string>}
|
|
@@ -231,6 +236,7 @@ const InternalConfig = function (initConfig) { // eslint-disable-line no-unused-
|
|
this.locale = parse('locale', this.locale);
|
|
this.locale = parse('locale', this.locale);
|
|
this.canvasResizePolicy = parse('canvasResizePolicy', this.canvasResizePolicy);
|
|
this.canvasResizePolicy = parse('canvasResizePolicy', this.canvasResizePolicy);
|
|
this.persistentPaths = parse('persistentPaths', this.persistentPaths);
|
|
this.persistentPaths = parse('persistentPaths', this.persistentPaths);
|
|
|
|
+ this.persistentDrops = parse('persistentDrops', this.persistentDrops);
|
|
this.experimentalVK = parse('experimentalVK', this.experimentalVK);
|
|
this.experimentalVK = parse('experimentalVK', this.experimentalVK);
|
|
this.gdnativeLibs = parse('gdnativeLibs', this.gdnativeLibs);
|
|
this.gdnativeLibs = parse('gdnativeLibs', this.gdnativeLibs);
|
|
this.fileSizes = parse('fileSizes', this.fileSizes);
|
|
this.fileSizes = parse('fileSizes', this.fileSizes);
|
|
@@ -316,6 +322,7 @@ const InternalConfig = function (initConfig) { // eslint-disable-line no-unused-
|
|
'canvas': this.canvas,
|
|
'canvas': this.canvas,
|
|
'canvasResizePolicy': this.canvasResizePolicy,
|
|
'canvasResizePolicy': this.canvasResizePolicy,
|
|
'locale': locale,
|
|
'locale': locale,
|
|
|
|
+ 'persistentDrops': this.persistentDrops,
|
|
'virtualKeyboard': this.experimentalVK,
|
|
'virtualKeyboard': this.experimentalVK,
|
|
'onExecute': this.onExecute,
|
|
'onExecute': this.onExecute,
|
|
'onExit': function (p_code) {
|
|
'onExit': function (p_code) {
|