We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41f0b51 commit b0623b9Copy full SHA for b0623b9
1 file changed
v3/src/boot/Config.js
@@ -54,8 +54,11 @@ var Config = function (config)
54
55
this.fps = GetObjectValue(config, 'fps', 60);
56
this.forceSetTimeOut = GetObjectValue(config, 'forceSetTimeOut', false);
57
- this.transparent = GetObjectValue(config, 'transparent', false);
+
58
this.pixelArt = GetObjectValue(config, 'pixelArt', false);
59
+ this.transparent = GetObjectValue(config, 'transparent', false);
60
+ this.clearBeforeRender = GetObjectValue(config, 'clearBeforeRender', true);
61
+ this.backgroundColor = GetObjectValue(config, 'backgroundColor', '#000000');
62
63
// Callbacks
64
this.preBoot = GetObjectValue(config, 'callbacks.preBoot', NOOP);
0 commit comments