Code edit (12 edits merged)
Please save this source code
User prompt
Make the position pattern in the modules white
User prompt
Make the position pattern white
Code edit (8 edits merged)
Please save this source code
User prompt
Make a container called QRcode, We're not making a QR Maze Runner
Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
User prompt
QR Maze Runner
Initial prompt
Qr code generator
/**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0xFFFFFF }); /**** * Game Code ****/ var positionL = LK.getAsset('QRCodePosition', { x: 2048 / 2, y: 2732 / 2, width: 3 * 128, height: 3 * 128, anchorX: 0.5, anchorY: 0.5 }); game.addChild(positionL);
===================================================================
--- original.js
+++ change.js
@@ -1,6 +1,19 @@
-/****
+/****
* Initialize Game
-****/
+****/
var game = new LK.Game({
backgroundColor: 0xFFFFFF
-});
\ No newline at end of file
+});
+
+/****
+* Game Code
+****/
+var positionL = LK.getAsset('QRCodePosition', {
+ x: 2048 / 2,
+ y: 2732 / 2,
+ width: 3 * 128,
+ height: 3 * 128,
+ anchorX: 0.5,
+ anchorY: 0.5
+});
+game.addChild(positionL);
\ No newline at end of file