This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //box3 | |
| const box3 = this.add.container(startX / 2 - 100, 350).setDepth(20); | |
| square = this.add.sprite(0, 0, "square").setOrigin(0.5).setScale(0.5); | |
| number = this.add.text(40, -50, 3, { color: 0xffff }); | |
| item = this.add.image(0, 0, this.levelData[index].boxs[0]).setOrigin(0.5); | |
| box3.add(square); | |
| box3.add(number); | |
| box3.add(item); | |
| box3.setSize(128, 128); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // save score for the first time | |
| if (localStorage.hasOwnProperty("score") == false) { | |
| localStorage.setItem("score", this.SCORE); | |
| } else { | |
| const savedScore = localStorage.getItem("score"); | |
| if (this.SCORE > savedScore) { | |
| localStorage.setItem("score", this.SCORE); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "tilesets": [ | |
| { | |
| "columns": 1, | |
| "firstgid": 1, | |
| "image": "tile64x64.png", | |
| "imageheight": 64, | |
| "imagewidth": 64, | |
| "margin": 0, | |
| "name": "tile64x64", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const position = getRelativePositionToParcel(parcel, worldPosition); | |
| console.log('relativePosition', position); | |
| if (parcel && !isOverlap(parcel, position)) { | |
| } | |
| function getRelativePositionToParcel({ bounds }, pxPosition) { | |
| // Return position top_left position in InstallationGrid | |
| return { | |
| x: (pxPosition.x - bounds.x) / GOTCHI, | |
| y: (pxPosition.y - bounds.y) / GOTCHI, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function create () | |
| { | |
| var polygon = new Phaser.Geom.Polygon([ | |
| 400, 100, | |
| 200, 278, | |
| 340, 430, | |
| 650, 80 | |
| ]); | |
| var graphics = this.add.graphics({ x: 0, y: 0 }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| generateTerrain(graphics, mountainStart) { | |
| // array to store slope points | |
| let slopePoints = []; | |
| let slopesCount = 0; | |
| let slopeStart = new Phaser.Math.Vector2(0, mountainStart.y); | |
| let slopeLength = Phaser.Math.Between( | |
| this.terrainConfig.slopeLength[0], | |
| this.terrainConfig.slopeLength[1] | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # in a terminal | |
| # python -m pip install --user opencv-contrib-python numpy scipy matplotlib ipython jupyter pandas sympy nose | |
| import cv2 | |
| import pandas as pd | |
| import numpy as np | |
| import imutils | |
| from scipy.spatial import distance as dist | |
| from imutils import perspective |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.b2mgames.BoomSwipe.huawei" xmlns:tools="http://schemas.android.com/tools" android:installLocation="preferExternal"> | |
| <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" /> | |
| <application android:theme="@style/UnityThemeSelector" android:icon="@mipmap/app_icon" android:label="@string/app_name" android:isGame="true" android:roundIcon="@mipmap/app_icon_round"> | |
| <activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name" android:screenOrientation="sensorPortrait" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density" android:hardwareAccelerated="false"> | |
| <intent-filter> | |
| <action and |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <uses-feature android:glEsVersion="0x00020000" /> | |
| <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/> | |
| <uses-permission android:name="com.huawei.appmarket.service.commondata.permission.GET_COMMON_DATA"/> | |
| <uses-permission android:name="android.permission.INTERNET" /> | |
| <uses-permission android:name="android.permission.VIBRATE" /> | |
| <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | |
| <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> | |
| <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <meta-data | |
| android:name="com.huawei.hms.client.appid" | |
| android:value="appid=100623175"> | |
| </meta-data> | |
| <meta-data | |
| android:name="com.huawei.hms.client.cpid" | |
| android:value="cpid=890060200000000049"> | |
| </meta-data> |