fix:1、修复bug。2、删除json表,改为配置加载
@@ -0,0 +1,15 @@
|
||||
<linker>
|
||||
<assembly fullname="Unity.Addressables, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" preserve="all">
|
||||
<type fullname="UnityEngine.AddressableAssets.Addressables" preserve="all" />
|
||||
</assembly>
|
||||
<assembly fullname="Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" preserve="all">
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.InstanceProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.LegacyResourcesProvider" preserve="all" />
|
||||
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.SceneProvider" preserve="all" />
|
||||
</assembly>
|
||||
<assembly fullname="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
|
||||
<type fullname="UnityEngine.TextAsset" preserve="all" />
|
||||
</assembly>
|
||||
</linker>
|
||||
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 35bc2628e7d24e94a9acb05b778357f0
|
||||
guid: a40f80dac4acf4d43924b05ec8c849ef
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace IgnoreOPS
|
||||
{
|
||||
public class ArrowGameConfigModel : ConfigModel<ArrowGameConfigModel, ArrowGameConfig>
|
||||
{
|
||||
public ArrowGameConfigModel(string key) : base(key)
|
||||
{
|
||||
}
|
||||
}
|
||||
public class ArrowGameConfig
|
||||
{
|
||||
public int id;
|
||||
public string levelName;
|
||||
public int gridRows;
|
||||
public int gridCols;
|
||||
public int pointSpacing;
|
||||
public string arrows;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a2de481234414c8792feee2aa26c6e47
|
||||
timeCreated: 1782804009
|
||||
@@ -9,6 +9,7 @@ namespace FGUI.Arrow_game
|
||||
{
|
||||
public Controller can;
|
||||
public GImage bg;
|
||||
public GImage img_saveingpot;
|
||||
public GTextField text;
|
||||
public const string URL = "ui://sjl9teijrsd4g";
|
||||
|
||||
@@ -23,7 +24,8 @@ namespace FGUI.Arrow_game
|
||||
|
||||
can = GetControllerAt(0);
|
||||
bg = (GImage)GetChildAt(0);
|
||||
text = (GTextField)GetChildAt(1);
|
||||
img_saveingpot = (GImage)GetChildAt(1);
|
||||
text = (GTextField)GetChildAt(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@ namespace FGUI.Common_01
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_money.URL, typeof(com_money));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_task_pass.URL, typeof(btn_task_pass));
|
||||
UIObjectFactory.SetPackageItemExtension(com_open_tips.URL, typeof(com_open_tips));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_watchAd.URL, typeof(btn_watchAd));
|
||||
UIObjectFactory.SetPackageItemExtension(com_broadcast_text1.URL, typeof(com_broadcast_text1));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_noads.URL, typeof(btn_noads));
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.Common_01
|
||||
{
|
||||
public partial class com_open_tips : GComponent
|
||||
{
|
||||
public GTextField text_level_limit;
|
||||
public GGroup panel;
|
||||
public Transition t0;
|
||||
public const string URL = "ui://o9974uc5arocdc";
|
||||
|
||||
public static com_open_tips CreateInstance()
|
||||
{
|
||||
return (com_open_tips)UIPackage.CreateObject("Common_01", "com_open_tips");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
text_level_limit = (GTextField)GetChildAt(2);
|
||||
panel = (GGroup)GetChildAt(3);
|
||||
t0 = GetTransitionAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 39f9cfc14b5aa4b2e9e3d36817f63e57
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -21,9 +21,9 @@ namespace FGUI.Common_01
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
title = (GTextField)GetChildAt(1);
|
||||
btn_relog = (btn_yellow)GetChildAt(2);
|
||||
content = (GTextField)GetChildAt(3);
|
||||
title = (GTextField)GetChildAt(2);
|
||||
btn_relog = (btn_yellow)GetChildAt(3);
|
||||
content = (GTextField)GetChildAt(4);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,6 @@ namespace FGUI.Lobby_03
|
||||
{
|
||||
public Controller state;
|
||||
public GTextField text_name;
|
||||
public GButton bnt_luck_gift;
|
||||
public GButton btn_petty;
|
||||
public GButton btn_battle;
|
||||
public GButton btn_noads;
|
||||
@@ -46,32 +45,31 @@ namespace FGUI.Lobby_03
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
state = GetControllerAt(0);
|
||||
text_name = (GTextField)GetChildAt(2);
|
||||
bnt_luck_gift = (GButton)GetChildAt(3);
|
||||
btn_petty = (GButton)GetChildAt(5);
|
||||
btn_battle = (GButton)GetChildAt(6);
|
||||
btn_noads = (GButton)GetChildAt(7);
|
||||
btn_task = (GButton)GetChildAt(8);
|
||||
btn_statement = (GButton)GetChildAt(9);
|
||||
btn_wv = (GButton)GetChildAt(10);
|
||||
left_group = (GGroup)GetChildAt(11);
|
||||
btn_failpack = (GButton)GetChildAt(13);
|
||||
btn_faq = (GButton)GetChildAt(14);
|
||||
btn_three_day = (GButton)GetChildAt(15);
|
||||
btn_shop = (btn_shop)GetChildAt(19);
|
||||
btn_saveingpot = (GButton)GetChildAt(20);
|
||||
btn_rank = (GButton)GetChildAt(21);
|
||||
btn_sign = (btn_sign)GetChildAt(22);
|
||||
btn_spin = (btn_wheel)GetChildAt(23);
|
||||
btn_setting = (GButton)GetChildAt(24);
|
||||
btn_restore = (GButton)GetChildAt(25);
|
||||
right_group = (GGroup)GetChildAt(26);
|
||||
btn_money = (GComponent)GetChildAt(27);
|
||||
btn_start = (GButton)GetChildAt(29);
|
||||
com_level = (com_level)GetChildAt(30);
|
||||
btn_gold = (GButton)GetChildAt(32);
|
||||
btn_head = (GButton)GetChildAt(33);
|
||||
top_group = (GGroup)GetChildAt(34);
|
||||
text_name = (GTextField)GetChildAt(1);
|
||||
btn_petty = (GButton)GetChildAt(3);
|
||||
btn_battle = (GButton)GetChildAt(4);
|
||||
btn_noads = (GButton)GetChildAt(5);
|
||||
btn_task = (GButton)GetChildAt(6);
|
||||
btn_statement = (GButton)GetChildAt(7);
|
||||
btn_wv = (GButton)GetChildAt(8);
|
||||
left_group = (GGroup)GetChildAt(9);
|
||||
btn_failpack = (GButton)GetChildAt(11);
|
||||
btn_faq = (GButton)GetChildAt(12);
|
||||
btn_three_day = (GButton)GetChildAt(13);
|
||||
btn_shop = (btn_shop)GetChildAt(17);
|
||||
btn_saveingpot = (GButton)GetChildAt(18);
|
||||
btn_rank = (GButton)GetChildAt(19);
|
||||
btn_sign = (btn_sign)GetChildAt(20);
|
||||
btn_spin = (btn_wheel)GetChildAt(21);
|
||||
btn_setting = (GButton)GetChildAt(22);
|
||||
btn_restore = (GButton)GetChildAt(23);
|
||||
right_group = (GGroup)GetChildAt(24);
|
||||
btn_money = (GComponent)GetChildAt(25);
|
||||
btn_start = (GButton)GetChildAt(27);
|
||||
com_level = (com_level)GetChildAt(28);
|
||||
btn_gold = (GButton)GetChildAt(30);
|
||||
btn_head = (GButton)GetChildAt(31);
|
||||
top_group = (GGroup)GetChildAt(32);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ namespace FGUI.Privacy_24
|
||||
public partial class com_privacy : GComponent
|
||||
{
|
||||
public Controller show;
|
||||
public GButton btn_close;
|
||||
public GButton btn_back;
|
||||
public GList text_list;
|
||||
public GTextField text_tips;
|
||||
public GTextField title;
|
||||
@@ -24,10 +24,10 @@ namespace FGUI.Privacy_24
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
show = GetControllerAt(0);
|
||||
btn_close = (GButton)GetChildAt(2);
|
||||
text_list = (GList)GetChildAt(3);
|
||||
text_tips = (GTextField)GetChildAt(4);
|
||||
title = (GTextField)GetChildAt(5);
|
||||
btn_back = (GButton)GetChildAt(1);
|
||||
text_list = (GList)GetChildAt(2);
|
||||
text_tips = (GTextField)GetChildAt(3);
|
||||
title = (GTextField)GetChildAt(4);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -571,7 +571,7 @@ namespace ChillConnect
|
||||
if (GameHelper.isRDExchangeMode()&&GameHelper.IsGiftSwitch())
|
||||
{
|
||||
string str = "<img src='ui://o9974uc5qbo98'/>";
|
||||
return str + $"$ {ch:N0}";
|
||||
return str + $"$ {ch:N}";
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1077,6 +1077,17 @@ namespace ChillConnect
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static bool IsShowOpenGameUI()
|
||||
{
|
||||
var vo = ConfigSystem.GetConfig<MakeupModel>().DataList;
|
||||
|
||||
if (GetLevel() > vo[^1].levels_need)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public static void SetItemNumber(int type, int value)
|
||||
{
|
||||
if (type == 0)
|
||||
@@ -1379,12 +1390,18 @@ namespace ChillConnect
|
||||
// if (!GameHelper.IsGiftSwitch())
|
||||
var isGet = SaveData.GetSaveObject().IsGetFirstReward;
|
||||
if (loginModel.NewPlayer || !isGet )
|
||||
{
|
||||
if (IsGiftSwitch())
|
||||
{
|
||||
SaveData.GetSaveObject().IsGetFirstReward = true;
|
||||
SaveData.saveDataFunc();
|
||||
GameHelper.GetLoginModel().NewPlayer = false;
|
||||
// PlayerPrefs.GetInt("FirstReward", 1);
|
||||
var awardNum = ConfigSystem.GetConfig<CommonModel>().InitialNum;
|
||||
addMoney(awardNum);
|
||||
GameDispatcher.Instance.Dispatch(GameMsg.Update102);
|
||||
}
|
||||
|
||||
AddGoldNumber(50);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,7 +30,7 @@ namespace ChillConnect
|
||||
private ConsumeSystem consumeSys;
|
||||
|
||||
private bool isFirstEnter = true;
|
||||
public int enterHallTimes = 0;
|
||||
public int openTipsTimes = 0;
|
||||
public bool isShowRankView = false;
|
||||
public event Action UpdateEvent;
|
||||
private Camera _gameCamera;
|
||||
@@ -104,7 +104,6 @@ namespace ChillConnect
|
||||
{
|
||||
// int index = obj != null ? (int)obj : 2;
|
||||
|
||||
enterHallTimes++;
|
||||
UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PlayUI_Close);
|
||||
UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.RewardAniUI_Close);
|
||||
AudioManager.Instance.StopBGM();
|
||||
@@ -170,12 +169,12 @@ namespace ChillConnect
|
||||
|
||||
private void OpenWb(object obj) {
|
||||
|
||||
// if (obj is not SDKOpenConfig openConfig) return;
|
||||
if (obj is not SDKOpenConfig openConfig) return;
|
||||
|
||||
// SdkConfigMgr.Instance.Open(openConfig.normal, openConfig.url);
|
||||
SetCameraVisible(false);
|
||||
|
||||
UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.H5UI_Open, false);
|
||||
UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.H5UI_Open, openConfig);
|
||||
|
||||
GameDispatcher.Instance.Dispatch(GameMsg.hideBroadCast);
|
||||
}
|
||||
@@ -250,4 +249,12 @@ namespace ChillConnect
|
||||
this.isInH5 = isInH5;
|
||||
}
|
||||
}
|
||||
|
||||
public class SDKOpenConfig
|
||||
{
|
||||
[JsonProperty("normal")]
|
||||
public bool normal;
|
||||
[JsonProperty("url")]
|
||||
public string url;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4b8c4b151163b44e39d38a9347890cb2
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -194,7 +194,8 @@
|
||||
"KwaiAds",
|
||||
"AD",
|
||||
"AppsFlyerSDK",
|
||||
"AppLovinMax"
|
||||
"AppLovinMax",
|
||||
"Gree.UnityWebView"
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -636,7 +637,7 @@
|
||||
{
|
||||
"Type" : "Bool",
|
||||
"Key" : "Global_Enable_Obfuscation",
|
||||
"Value" : "True",
|
||||
"Value" : "False",
|
||||
"Values" : null
|
||||
}
|
||||
]
|
||||
|
||||
@@ -8,6 +8,9 @@ using System.Text;
|
||||
using System.Xml;
|
||||
using System;
|
||||
using UnityEditor.Android;
|
||||
#if UNITY_2020_1_OR_NEWER
|
||||
using UnityEditor.Build.Reporting;
|
||||
#endif
|
||||
#if UNITY_2018_1_OR_NEWER
|
||||
using UnityEditor.Build;
|
||||
#endif
|
||||
@@ -15,7 +18,11 @@ using UnityEditor.Callbacks;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
#if UNITY_2018_1_OR_NEWER
|
||||
namespace Gree.UnityWebView
|
||||
{
|
||||
#if UNITY_2020_1_OR_NEWER
|
||||
public class UnityWebViewPostprocessBuild : IPreprocessBuildWithReport, IPostGenerateGradleAndroidProject
|
||||
#elif UNITY_2018_1_OR_NEWER
|
||||
public class UnityWebViewPostprocessBuild : IPreprocessBuild, IPostGenerateGradleAndroidProject
|
||||
#else
|
||||
public class UnityWebViewPostprocessBuild
|
||||
@@ -28,7 +35,12 @@ public class UnityWebViewPostprocessBuild
|
||||
//// cf. https://github.com/Over17/UnityAndroidManifestCallback
|
||||
|
||||
#if UNITY_2018_1_OR_NEWER
|
||||
#if UNITY_2020_1_OR_NEWER
|
||||
public void OnPreprocessBuild(BuildReport buildReport) {
|
||||
var buildTarget = buildReport.summary.platform;
|
||||
#else
|
||||
public void OnPreprocessBuild(BuildTarget buildTarget, string path) {
|
||||
#endif
|
||||
if (buildTarget == BuildTarget.Android) {
|
||||
var dev = "Packages/net.gree.unity-webview/Assets/Plugins/Android/WebViewPlugin-development.aar.tmpl";
|
||||
var rel = "Packages/net.gree.unity-webview/Assets/Plugins/Android/WebViewPlugin-release.aar.tmpl";
|
||||
@@ -100,13 +112,15 @@ public class UnityWebViewPostprocessBuild
|
||||
#if UNITYWEBVIEW_ANDROID_USES_CLEARTEXT_TRAFFIC
|
||||
changed = (androidManifest.SetUsesCleartextTraffic(true) || changed);
|
||||
#endif
|
||||
if (!nofragment) {
|
||||
changed = (androidManifest.AddGallery() || changed);
|
||||
#if UNITYWEBVIEW_ANDROID_ENABLE_CAMERA
|
||||
changed = (androidManifest.AddCamera() || changed);
|
||||
changed = (androidManifest.AddGallery() || changed);
|
||||
#endif
|
||||
#if UNITYWEBVIEW_ANDROID_ENABLE_MICROPHONE
|
||||
changed = (androidManifest.AddMicrophone() || changed);
|
||||
#endif
|
||||
}
|
||||
if (changed) {
|
||||
androidManifest.Save();
|
||||
Debug.Log("unitywebview: adjusted AndroidManifest.xml.");
|
||||
@@ -210,13 +224,15 @@ public class UnityWebViewPostprocessBuild
|
||||
#if UNITYWEBVIEW_ANDROID_USES_CLEARTEXT_TRAFFIC
|
||||
changed = (androidManifest.SetUsesCleartextTraffic(true) || changed);
|
||||
#endif
|
||||
if (!nofragment) {
|
||||
changed = (androidManifest.AddGallery() || changed);
|
||||
#if UNITYWEBVIEW_ANDROID_ENABLE_CAMERA
|
||||
changed = (androidManifest.AddCamera() || changed);
|
||||
changed = (androidManifest.AddGallery() || changed);
|
||||
#endif
|
||||
#if UNITYWEBVIEW_ANDROID_ENABLE_MICROPHONE
|
||||
changed = (androidManifest.AddMicrophone() || changed);
|
||||
#endif
|
||||
}
|
||||
#if UNITY_5_6_0 || UNITY_5_6_1
|
||||
changed = (androidManifest.SetActivityName("net.gree.unitywebview.CUnityPlayerActivity") || changed);
|
||||
#endif
|
||||
@@ -350,6 +366,9 @@ internal class AndroidManifest : AndroidXmlDocument {
|
||||
internal bool SetExported(bool enabled) {
|
||||
bool changed = false;
|
||||
var activity = GetActivityWithLaunchIntent() as XmlElement;
|
||||
if (activity == null) {
|
||||
return false;
|
||||
}
|
||||
if (activity.GetAttribute("exported", AndroidXmlNamespace) != ((enabled) ? "true" : "false")) {
|
||||
activity.SetAttribute("exported", AndroidXmlNamespace, (enabled) ? "true" : "false");
|
||||
changed = true;
|
||||
@@ -360,6 +379,9 @@ internal class AndroidManifest : AndroidXmlDocument {
|
||||
internal bool SetWindowSoftInputMode(string mode) {
|
||||
bool changed = false;
|
||||
var activity = GetActivityWithLaunchIntent() as XmlElement;
|
||||
if (activity == null) {
|
||||
return false;
|
||||
}
|
||||
if (activity.GetAttribute("windowSoftInputMode", AndroidXmlNamespace) != mode) {
|
||||
activity.SetAttribute("windowSoftInputMode", AndroidXmlNamespace, mode);
|
||||
changed = true;
|
||||
@@ -370,6 +392,9 @@ internal class AndroidManifest : AndroidXmlDocument {
|
||||
internal bool SetHardwareAccelerated(bool enabled) {
|
||||
bool changed = false;
|
||||
var activity = GetActivityWithLaunchIntent() as XmlElement;
|
||||
if (activity == null) {
|
||||
return false;
|
||||
}
|
||||
if (activity.GetAttribute("hardwareAccelerated", AndroidXmlNamespace) != ((enabled) ? "true" : "false")) {
|
||||
activity.SetAttribute("hardwareAccelerated", AndroidXmlNamespace, (enabled) ? "true" : "false");
|
||||
changed = true;
|
||||
@@ -380,6 +405,9 @@ internal class AndroidManifest : AndroidXmlDocument {
|
||||
internal bool SetActivityName(string name) {
|
||||
bool changed = false;
|
||||
var activity = GetActivityWithLaunchIntent() as XmlElement;
|
||||
if (activity == null) {
|
||||
return false;
|
||||
}
|
||||
if (activity.GetAttribute("name", AndroidXmlNamespace) != name) {
|
||||
activity.SetAttribute("name", AndroidXmlNamespace, name);
|
||||
changed = true;
|
||||
@@ -536,4 +564,5 @@ internal class AndroidManifest : AndroidXmlDocument {
|
||||
return changed;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 60e7bf38137eb4950b2f02b7d57c1ad3
|
||||
folderAsset: yes
|
||||
PluginImporter:
|
||||
serializedVersion: 1
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
isPreloaded: 0
|
||||
platformData:
|
||||
Android:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
Any:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
Editor:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
DefaultValueInitialized: true
|
||||
OS: OSX
|
||||
Linux:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: x86
|
||||
Linux64:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: x86_64
|
||||
OSXIntel:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
OSXIntel64:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
OSXUniversal:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
Win:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
Win64:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
iOS:
|
||||
enabled: 0
|
||||
settings:
|
||||
CompileFlags:
|
||||
FrameworkDependencies:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>25F80</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>WebView</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>net.gree.unitywebview.WebView</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>WebView</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>DTCompiler</key>
|
||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>25F70</string>
|
||||
<key>DTPlatformName</key>
|
||||
<string>macosx</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>26.5</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>25F70</string>
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx26.5</string>
|
||||
<key>DTXcode</key>
|
||||
<string>2650</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>17F42</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.13</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>Resources/InfoPlist.strings</key>
|
||||
<data>
|
||||
MiLKDDnrUKr4EmuvhS5VQwxHGK8=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>Resources/InfoPlist.strings</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Oc8u4Ht7Mz58F50L9NeYpbcq9qTlhPUeZCcDu/pPyCg=
|
||||
</data>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>rules2</key>
|
||||
<dict>
|
||||
<key>.*\.dSYM($|/)</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>11</real>
|
||||
</dict>
|
||||
<key>^(.*/)?\.DS_Store$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>2000</real>
|
||||
</dict>
|
||||
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^.*</key>
|
||||
<true/>
|
||||
<key>^Info\.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^PkgInfo$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^[^/]+$</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^embedded\.provisionprofile$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^version\.plist$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -129,6 +129,7 @@ extern "C" void UnitySendMessage(const char *, const char *, const char *);
|
||||
UIView <WebViewProtocol> *webView;
|
||||
NSString *gameObjectName;
|
||||
NSMutableDictionary *customRequestHeader;
|
||||
BOOL googleAppRedirectionEnabled;
|
||||
BOOL alertDialogEnabled;
|
||||
NSRegularExpression *allowRegex;
|
||||
NSRegularExpression *denyRegex;
|
||||
@@ -154,6 +155,7 @@ static NSMutableArray *_instances = [[NSMutableArray alloc] init];
|
||||
|
||||
gameObjectName = [NSString stringWithUTF8String:gameObjectName_];
|
||||
customRequestHeader = [[NSMutableDictionary alloc] init];
|
||||
googleAppRedirectionEnabled = false;
|
||||
alertDialogEnabled = true;
|
||||
allowRegex = nil;
|
||||
denyRegex = nil;
|
||||
@@ -169,6 +171,7 @@ static NSMutableArray *_instances = [[NSMutableArray alloc] init];
|
||||
WKUserContentController *controller = [[WKUserContentController alloc] init];
|
||||
[controller addScriptMessageHandler:[[WeakScriptMessageDelegate alloc] initWithDelegate:self] name:@"unityControl"];
|
||||
[controller addScriptMessageHandler:[[WeakScriptMessageDelegate alloc] initWithDelegate:self] name:@"saveDataURL"];
|
||||
{
|
||||
NSString *str = @"\
|
||||
window.Unity = { \
|
||||
call: function(msg) { \
|
||||
@@ -179,8 +182,11 @@ window.Unity = { \
|
||||
} \
|
||||
}; \
|
||||
";
|
||||
WKUserScript *script = [[WKUserScript alloc] initWithSource:str injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES];
|
||||
[controller addUserScript:script];
|
||||
}
|
||||
if (!zoom) {
|
||||
str = [str stringByAppendingString:@"\
|
||||
NSString *str = @"\
|
||||
(function() { \
|
||||
var meta = document.querySelector('meta[name=viewport]'); \
|
||||
if (meta == null) { \
|
||||
@@ -191,12 +197,10 @@ window.Unity = { \
|
||||
var head = document.getElementsByTagName('head')[0]; \
|
||||
head.appendChild(meta); \
|
||||
})(); \
|
||||
"
|
||||
];
|
||||
}
|
||||
WKUserScript *script
|
||||
= [[WKUserScript alloc] initWithSource:str injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
|
||||
";
|
||||
WKUserScript *script = [[WKUserScript alloc] initWithSource:str injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
|
||||
[controller addUserScript:script];
|
||||
}
|
||||
configuration.userContentController = controller;
|
||||
configuration.allowsInlineMediaPlayback = true;
|
||||
if (@available(iOS 10.0, *)) {
|
||||
@@ -267,6 +271,12 @@ window.Unity = { \
|
||||
|
||||
[view addSubview:webView];
|
||||
|
||||
//set webview for Unity 6 accessibility hierarchy
|
||||
NSMutableArray<UIAccessibilityElement *> *accessibilityElements
|
||||
= view.accessibilityElements ? [view.accessibilityElements mutableCopy] : [NSMutableArray array];
|
||||
[accessibilityElements addObject:(UIAccessibilityElement *)webView];
|
||||
view.accessibilityElements = accessibilityElements;
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
@@ -284,6 +294,13 @@ window.Unity = { \
|
||||
[webView0 stopLoading];
|
||||
[webView0 removeFromSuperview];
|
||||
[webView0 removeObserver:self forKeyPath:@"loading"];
|
||||
|
||||
//remove the WebViewObject from Unity hierarchy tree
|
||||
UIView *view = UnityGetGLViewController().view;
|
||||
NSMutableArray<UIAccessibilityElement *> *accessibilityElements
|
||||
= view.accessibilityElements ? [view.accessibilityElements mutableCopy] : [NSMutableArray array];
|
||||
[accessibilityElements removeObject: (UIAccessibilityElement *)webView0];
|
||||
view.accessibilityElements = accessibilityElements;
|
||||
}
|
||||
basicAuthPassword = nil;
|
||||
basicAuthUserName = nil;
|
||||
@@ -306,6 +323,42 @@ window.Unity = { \
|
||||
}];
|
||||
}
|
||||
|
||||
+ (void)clearCookie:(const char *)name of:(const char *)url
|
||||
{
|
||||
NSURL *nsurl = [NSURL URLWithString:[[NSString alloc] initWithUTF8String:url]];
|
||||
if (nsurl == nil) {
|
||||
return;
|
||||
}
|
||||
NSString *nsname = [NSString stringWithUTF8String:name];
|
||||
if (@available(iOS 9.0, *)) {
|
||||
WKHTTPCookieStore *cookieStore = WKWebsiteDataStore.defaultDataStore.httpCookieStore;
|
||||
[cookieStore
|
||||
getAllCookies:^(NSArray<NSHTTPCookie *> *array) {
|
||||
[array
|
||||
enumerateObjectsUsingBlock:^(NSHTTPCookie *cookie, NSUInteger idx, BOOL *stop) {
|
||||
if ([cookie.name isEqualToString:nsname]
|
||||
&& [cookie.domain isEqualToString:nsurl.host]
|
||||
&& [cookie.path isEqualToString:nsurl.path]) {
|
||||
[cookieStore deleteCookie:cookie completionHandler:^{}];
|
||||
}
|
||||
}];
|
||||
}];
|
||||
} else {
|
||||
NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
|
||||
if (cookieStorage == nil) {
|
||||
// cf. https://stackoverflow.com/questions/33876295/nshttpcookiestorage-sharedhttpcookiestorage-comes-up-empty-in-10-11
|
||||
cookieStorage = [NSHTTPCookieStorage sharedCookieStorageForGroupContainerIdentifier:@"Cookies"];
|
||||
}
|
||||
[[cookieStorage cookies] enumerateObjectsUsingBlock:^(NSHTTPCookie *cookie, NSUInteger idx, BOOL *stop) {
|
||||
if ([cookie.name isEqualToString:nsname]
|
||||
&& [cookie.domain isEqualToString:nsurl.host]
|
||||
&& [cookie.path isEqualToString:nsurl.path]) {
|
||||
[cookieStorage deleteCookie:cookie];
|
||||
}
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
||||
+ (void)clearCookies
|
||||
{
|
||||
[CWebViewPlugin resetSharedProcessPool];
|
||||
@@ -537,7 +590,11 @@ window.Unity = { \
|
||||
return;
|
||||
}
|
||||
if ([url rangeOfString:@"//itunes.apple.com/"].location != NSNotFound) {
|
||||
if (@available(iOS 10.0, *)) {
|
||||
[[UIApplication sharedApplication] openURL:nsurl options:@{} completionHandler:nil];
|
||||
} else {
|
||||
[[UIApplication sharedApplication] openURL:nsurl];
|
||||
}
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
} else if ([url hasPrefix:@"unity:"]) {
|
||||
@@ -554,8 +611,12 @@ window.Unity = { \
|
||||
&& ![url hasPrefix:@"http:"]
|
||||
&& ![url hasPrefix:@"https:"]) {
|
||||
if([[UIApplication sharedApplication] canOpenURL:nsurl]) {
|
||||
if (@available(iOS 10.0, *)) {
|
||||
[[UIApplication sharedApplication] openURL:nsurl options:@{} completionHandler:nil];
|
||||
} else {
|
||||
[[UIApplication sharedApplication] openURL:nsurl];
|
||||
}
|
||||
}
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
} else if (navigationAction.navigationType == WKNavigationTypeLinkActivated
|
||||
@@ -568,7 +629,7 @@ window.Unity = { \
|
||||
if (navigationAction.targetFrame != nil && navigationAction.targetFrame.isMainFrame) {
|
||||
// If the custom header is not attached, give it and make a request again.
|
||||
if (![self isSetupedCustomHeader:[navigationAction request]]) {
|
||||
NSLog(@"navi ... %@", navigationAction);
|
||||
//NSLog(@"navi ... %@", navigationAction);
|
||||
[wkWebView loadRequest:[self constructionCustomHeader:navigationAction.request]];
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
@@ -576,6 +637,14 @@ window.Unity = { \
|
||||
}
|
||||
}
|
||||
UnitySendMessage([gameObjectName UTF8String], "CallOnStarted", [url UTF8String]);
|
||||
// cf. https://stackoverflow.com/questions/37086605/disable-wkwebview-for-opening-links-to-redirect-to-apps-installed-on-my-iphone/76948270#76948270
|
||||
if (!googleAppRedirectionEnabled
|
||||
&& [url hasPrefix:@"https://www.google.com/"]
|
||||
&& navigationAction.navigationType == WKNavigationTypeLinkActivated) {
|
||||
[webView load:navigationAction.request];
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
}
|
||||
decisionHandler(WKNavigationActionPolicyAllow);
|
||||
}
|
||||
|
||||
@@ -737,6 +806,13 @@ window.Unity = { \
|
||||
webView.userInteractionEnabled = enabled;
|
||||
}
|
||||
|
||||
- (void)setGoogleAppRedirectionEnabled:(BOOL)enabled
|
||||
{
|
||||
if (webView == nil)
|
||||
return;
|
||||
googleAppRedirectionEnabled = enabled;
|
||||
}
|
||||
|
||||
- (void)setAlertDialogEnabled:(BOOL)enabled
|
||||
{
|
||||
alertDialogEnabled = enabled;
|
||||
@@ -951,6 +1027,7 @@ extern "C" {
|
||||
void *instance, float left, float top, float right, float bottom, BOOL relative);
|
||||
void _CWebViewPlugin_SetVisibility(void *instance, BOOL visibility);
|
||||
void _CWebViewPlugin_SetInteractionEnabled(void *instance, BOOL enabled);
|
||||
void _CWebViewPlugin_SetGoogleAppRedirectionEnabled(void *instance, BOOL enabled);
|
||||
void _CWebViewPlugin_SetAlertDialogEnabled(void *instance, BOOL visibility);
|
||||
void _CWebViewPlugin_SetScrollbarsVisibility(void *instance, BOOL visibility);
|
||||
void _CWebViewPlugin_SetScrollBounceEnabled(void *instance, BOOL enabled);
|
||||
@@ -967,6 +1044,7 @@ extern "C" {
|
||||
void _CWebViewPlugin_AddCustomHeader(void *instance, const char *headerKey, const char *headerValue);
|
||||
void _CWebViewPlugin_RemoveCustomHeader(void *instance, const char *headerKey);
|
||||
void _CWebViewPlugin_ClearCustomHeader(void *instance);
|
||||
void _CWebViewPlugin_ClearCookie(const char *url, const char *name);
|
||||
void _CWebViewPlugin_ClearCookies();
|
||||
void _CWebViewPlugin_SaveCookies();
|
||||
void _CWebViewPlugin_GetCookies(void *instance, const char *url);
|
||||
@@ -1040,6 +1118,14 @@ void _CWebViewPlugin_SetInteractionEnabled(void *instance, BOOL enabled)
|
||||
[webViewPlugin setInteractionEnabled:enabled];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_SetGoogleAppRedirectionEnabled(void *instance, BOOL enabled)
|
||||
{
|
||||
if (instance == NULL)
|
||||
return;
|
||||
CWebViewPlugin *webViewPlugin = (__bridge CWebViewPlugin *)instance;
|
||||
[webViewPlugin setGoogleAppRedirectionEnabled:enabled];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_SetAlertDialogEnabled(void *instance, BOOL enabled)
|
||||
{
|
||||
if (instance == NULL)
|
||||
@@ -1168,6 +1254,11 @@ void _CWebViewPlugin_ClearCustomHeader(void *instance)
|
||||
[webViewPlugin clearCustomRequestHeader];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_ClearCookie(const char *url, const char *name)
|
||||
{
|
||||
[CWebViewPlugin clearCookie:name of:url];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_ClearCookies()
|
||||
{
|
||||
[CWebViewPlugin clearCookies];
|
||||
|
||||
@@ -182,6 +182,7 @@ extern "C" void UnitySendMessage(const char *, const char *, const char *);
|
||||
UIView <WebViewProtocol> *webView;
|
||||
NSString *gameObjectName;
|
||||
NSMutableDictionary *customRequestHeader;
|
||||
BOOL googleAppRedirectionEnabled;
|
||||
BOOL alertDialogEnabled;
|
||||
NSRegularExpression *allowRegex;
|
||||
NSRegularExpression *denyRegex;
|
||||
@@ -207,6 +208,7 @@ static NSMutableArray *_instances = [[NSMutableArray alloc] init];
|
||||
|
||||
gameObjectName = [NSString stringWithUTF8String:gameObjectName_];
|
||||
customRequestHeader = [[NSMutableDictionary alloc] init];
|
||||
googleAppRedirectionEnabled = false;
|
||||
alertDialogEnabled = true;
|
||||
allowRegex = nil;
|
||||
denyRegex = nil;
|
||||
@@ -222,6 +224,7 @@ static NSMutableArray *_instances = [[NSMutableArray alloc] init];
|
||||
WKUserContentController *controller = [[WKUserContentController alloc] init];
|
||||
[controller addScriptMessageHandler:[[WeakScriptMessageDelegate alloc] initWithDelegate:self] name:@"unityControl"];
|
||||
[controller addScriptMessageHandler:[[WeakScriptMessageDelegate alloc] initWithDelegate:self] name:@"saveDataURL"];
|
||||
{
|
||||
NSString *str = @"\
|
||||
window.Unity = { \
|
||||
call: function(msg) { \
|
||||
@@ -232,8 +235,11 @@ window.Unity = { \
|
||||
} \
|
||||
}; \
|
||||
";
|
||||
WKUserScript *script = [[WKUserScript alloc] initWithSource:str injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES];
|
||||
[controller addUserScript:script];
|
||||
}
|
||||
if (!zoom) {
|
||||
str = [str stringByAppendingString:@"\
|
||||
NSString *str = @"\
|
||||
(function() { \
|
||||
var meta = document.querySelector('meta[name=viewport]'); \
|
||||
if (meta == null) { \
|
||||
@@ -244,12 +250,10 @@ window.Unity = { \
|
||||
var head = document.getElementsByTagName('head')[0]; \
|
||||
head.appendChild(meta); \
|
||||
})(); \
|
||||
"
|
||||
];
|
||||
}
|
||||
WKUserScript *script
|
||||
= [[WKUserScript alloc] initWithSource:str injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
|
||||
";
|
||||
WKUserScript *script = [[WKUserScript alloc] initWithSource:str injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
|
||||
[controller addUserScript:script];
|
||||
}
|
||||
configuration.userContentController = controller;
|
||||
configuration.allowsInlineMediaPlayback = true;
|
||||
if (@available(iOS 10.0, *)) {
|
||||
@@ -368,6 +372,42 @@ window.Unity = { \
|
||||
}];
|
||||
}
|
||||
|
||||
+ (void)clearCookie:(const char *)name of:(const char *)url
|
||||
{
|
||||
NSURL *nsurl = [NSURL URLWithString:[[NSString alloc] initWithUTF8String:url]];
|
||||
if (nsurl == nil) {
|
||||
return;
|
||||
}
|
||||
NSString *nsname = [NSString stringWithUTF8String:name];
|
||||
if (@available(iOS 9.0, *)) {
|
||||
WKHTTPCookieStore *cookieStore = WKWebsiteDataStore.defaultDataStore.httpCookieStore;
|
||||
[cookieStore
|
||||
getAllCookies:^(NSArray<NSHTTPCookie *> *array) {
|
||||
[array
|
||||
enumerateObjectsUsingBlock:^(NSHTTPCookie *cookie, NSUInteger idx, BOOL *stop) {
|
||||
if ([cookie.name isEqualToString:nsname]
|
||||
&& [cookie.domain isEqualToString:nsurl.host]
|
||||
&& [cookie.path isEqualToString:nsurl.path]) {
|
||||
[cookieStore deleteCookie:cookie completionHandler:^{}];
|
||||
}
|
||||
}];
|
||||
}];
|
||||
} else {
|
||||
NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
|
||||
if (cookieStorage == nil) {
|
||||
// cf. https://stackoverflow.com/questions/33876295/nshttpcookiestorage-sharedhttpcookiestorage-comes-up-empty-in-10-11
|
||||
cookieStorage = [NSHTTPCookieStorage sharedCookieStorageForGroupContainerIdentifier:@"Cookies"];
|
||||
}
|
||||
[[cookieStorage cookies] enumerateObjectsUsingBlock:^(NSHTTPCookie *cookie, NSUInteger idx, BOOL *stop) {
|
||||
if ([cookie.name isEqualToString:nsname]
|
||||
&& [cookie.domain isEqualToString:nsurl.host]
|
||||
&& [cookie.path isEqualToString:nsurl.path]) {
|
||||
[cookieStorage deleteCookie:cookie];
|
||||
}
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
||||
+ (void)clearCookies
|
||||
{
|
||||
[CWebViewPlugin resetSharedProcessPool];
|
||||
@@ -606,7 +646,11 @@ window.Unity = { \
|
||||
return NO;
|
||||
}
|
||||
if ([url rangeOfString:@"//itunes.apple.com/"].location != NSNotFound) {
|
||||
if (@available(iOS 10.0, *)) {
|
||||
[[UIApplication sharedApplication] openURL:nsurl options:@{} completionHandler:nil];
|
||||
} else {
|
||||
[[UIApplication sharedApplication] openURL:nsurl];
|
||||
}
|
||||
return NO;
|
||||
} else if ([url hasPrefix:@"unity:"]) {
|
||||
UnitySendMessage([gameObjectName UTF8String], "CallFromJS", [[url substringFromIndex:6] UTF8String]);
|
||||
@@ -652,7 +696,11 @@ window.Unity = { \
|
||||
return;
|
||||
}
|
||||
if ([url rangeOfString:@"//itunes.apple.com/"].location != NSNotFound) {
|
||||
if (@available(iOS 10.0, *)) {
|
||||
[[UIApplication sharedApplication] openURL:nsurl options:@{} completionHandler:nil];
|
||||
} else {
|
||||
[[UIApplication sharedApplication] openURL:nsurl];
|
||||
}
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
} else if ([url hasPrefix:@"unity:"]) {
|
||||
@@ -669,8 +717,12 @@ window.Unity = { \
|
||||
&& ![url hasPrefix:@"http:"]
|
||||
&& ![url hasPrefix:@"https:"]) {
|
||||
if([[UIApplication sharedApplication] canOpenURL:nsurl]) {
|
||||
if (@available(iOS 10.0, *)) {
|
||||
[[UIApplication sharedApplication] openURL:nsurl options:@{} completionHandler:nil];
|
||||
} else {
|
||||
[[UIApplication sharedApplication] openURL:nsurl];
|
||||
}
|
||||
}
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
} else if (navigationAction.navigationType == WKNavigationTypeLinkActivated
|
||||
@@ -683,7 +735,7 @@ window.Unity = { \
|
||||
if (navigationAction.targetFrame != nil && navigationAction.targetFrame.isMainFrame) {
|
||||
// If the custom header is not attached, give it and make a request again.
|
||||
if (![self isSetupedCustomHeader:[navigationAction request]]) {
|
||||
NSLog(@"navi ... %@", navigationAction);
|
||||
//NSLog(@"navi ... %@", navigationAction);
|
||||
[wkWebView loadRequest:[self constructionCustomHeader:navigationAction.request]];
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
@@ -691,6 +743,14 @@ window.Unity = { \
|
||||
}
|
||||
}
|
||||
UnitySendMessage([gameObjectName UTF8String], "CallOnStarted", [url UTF8String]);
|
||||
// cf. https://stackoverflow.com/questions/37086605/disable-wkwebview-for-opening-links-to-redirect-to-apps-installed-on-my-iphone/76948270#76948270
|
||||
if (!googleAppRedirectionEnabled
|
||||
&& [url hasPrefix:@"https://www.google.com/"]
|
||||
&& navigationAction.navigationType == WKNavigationTypeLinkActivated) {
|
||||
[webView load:navigationAction.request];
|
||||
decisionHandler(WKNavigationActionPolicyCancel);
|
||||
return;
|
||||
}
|
||||
decisionHandler(WKNavigationActionPolicyAllow);
|
||||
}
|
||||
|
||||
@@ -852,6 +912,13 @@ window.Unity = { \
|
||||
webView.userInteractionEnabled = enabled;
|
||||
}
|
||||
|
||||
- (void)setGoogleAppRedirectionEnabled:(BOOL)enabled
|
||||
{
|
||||
if (webView == nil)
|
||||
return;
|
||||
googleAppRedirectionEnabled = enabled;
|
||||
}
|
||||
|
||||
- (void)setAlertDialogEnabled:(BOOL)enabled
|
||||
{
|
||||
alertDialogEnabled = enabled;
|
||||
@@ -1044,6 +1111,7 @@ extern "C" {
|
||||
void *instance, float left, float top, float right, float bottom, BOOL relative);
|
||||
void _CWebViewPlugin_SetVisibility(void *instance, BOOL visibility);
|
||||
void _CWebViewPlugin_SetInteractionEnabled(void *instance, BOOL enabled);
|
||||
void _CWebViewPlugin_SetGoogleAppRedirectionEnabled(void *instance, BOOL enabled);
|
||||
void _CWebViewPlugin_SetAlertDialogEnabled(void *instance, BOOL visibility);
|
||||
void _CWebViewPlugin_SetScrollbarsVisibility(void *instance, BOOL visibility);
|
||||
void _CWebViewPlugin_SetScrollBounceEnabled(void *instance, BOOL enabled);
|
||||
@@ -1060,6 +1128,7 @@ extern "C" {
|
||||
void _CWebViewPlugin_AddCustomHeader(void *instance, const char *headerKey, const char *headerValue);
|
||||
void _CWebViewPlugin_RemoveCustomHeader(void *instance, const char *headerKey);
|
||||
void _CWebViewPlugin_ClearCustomHeader(void *instance);
|
||||
void _CWebViewPlugin_ClearCookie(const char *url, const char *name);
|
||||
void _CWebViewPlugin_ClearCookies();
|
||||
void _CWebViewPlugin_SaveCookies();
|
||||
void _CWebViewPlugin_GetCookies(void *instance, const char *url);
|
||||
@@ -1131,6 +1200,14 @@ void _CWebViewPlugin_SetInteractionEnabled(void *instance, BOOL enabled)
|
||||
[webViewPlugin setInteractionEnabled:enabled];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_SetGoogleAppRedirectionEnabled(void *instance, BOOL enabled)
|
||||
{
|
||||
if (instance == NULL)
|
||||
return;
|
||||
CWebViewPlugin *webViewPlugin = (__bridge CWebViewPlugin *)instance;
|
||||
[webViewPlugin setGoogleAppRedirectionEnabled:enabled];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_SetAlertDialogEnabled(void *instance, BOOL enabled)
|
||||
{
|
||||
if (instance == NULL)
|
||||
@@ -1259,6 +1336,11 @@ void _CWebViewPlugin_ClearCustomHeader(void *instance)
|
||||
[webViewPlugin clearCustomRequestHeader];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_ClearCookie(const char *url, const char *name)
|
||||
{
|
||||
[CWebViewPlugin clearCookie:name of:url];
|
||||
}
|
||||
|
||||
void _CWebViewPlugin_ClearCookies()
|
||||
{
|
||||
[CWebViewPlugin clearCookies];
|
||||
|
||||
|
Before Width: | Height: | Size: 247 KiB After Width: | Height: | Size: 215 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 3.2 MiB After Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 1.3 MiB |
@@ -1,153 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f8bdace28b3e087489176bc7aa4ecd3c
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 109 KiB |
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"levelId": 1,
|
||||
"levelName": "lv0",
|
||||
"gridRows": 4,
|
||||
"gridCols": 3,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 2,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 1,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 0,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"levelId": 2,
|
||||
"levelName": "lv1",
|
||||
"gridRows": 4,
|
||||
"gridCols": 3,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 2,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 1,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 0,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,431 +0,0 @@
|
||||
{
|
||||
"levelId": 3,
|
||||
"levelName": "lv10",
|
||||
"gridRows": 16,
|
||||
"gridCols": 16,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 245,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 234,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 206,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 175,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 61,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 45,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 19,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 65,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 130,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 102,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 149,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 150,
|
||||
"path": [
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 172,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 153,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 124,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 189,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 218,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 204,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 213,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 198,
|
||||
"path": [
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 195,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 83,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 119,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 77,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 120,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 36,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 177,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 126,
|
||||
"path": [
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 92,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 145,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 52,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 25,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 68,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 41,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 89,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 151,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 131,
|
||||
"path": [
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 182,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 215,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 229,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 185,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 154,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 155,
|
||||
"path": [
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bec74d2fafebfee4babcd7ffd3948ddc
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,934 +0,0 @@
|
||||
{
|
||||
"levelId": 5,
|
||||
"levelName": "lv101",
|
||||
"gridRows": 28,
|
||||
"gridCols": 22,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 594,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 395,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 263,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 363,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 346,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 370,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 260,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 283,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 302,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 258,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 414,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 582,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 561,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 457,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 458,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 456,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 455,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 587,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 545,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 413,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 407,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 475,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 352,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 382,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 381,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 399,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 400,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 375,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 426,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 487,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 492,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 533,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 579,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 208,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 31,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 173,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 152,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 168,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 85,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 32,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 80,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 79,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 127,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 164,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 123,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 339,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 47,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 70,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 22,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 27,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 73,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 118,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 161,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 112,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 134,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 338,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 332,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 249,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 289,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 485,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 290,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 524,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 592,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9fffeff3c4c3ad6448b2ea2cf2324495
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7201b910157780f4f8f184064e810b2b
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,802 +0,0 @@
|
||||
{
|
||||
"levelId": 7,
|
||||
"levelName": "lv103",
|
||||
"gridRows": 29,
|
||||
"gridCols": 23,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 535,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 634,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 122,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 3,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 35,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 56,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 77,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 74,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 96,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 2,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 115,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 117,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 71,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 142,
|
||||
"path": [
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 123,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 586,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 609,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 622,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 580,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 603,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 583,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 339,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 482,
|
||||
"path": [
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 551,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 276,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 345,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 349,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 254,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 186,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 279,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 327,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 415,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 576,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 556,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 419,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 16,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 229,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 366,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 225,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 84,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 83,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 108,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 111,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 178,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 159,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 274,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 273,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 321,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 488,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 435,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 533,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 387,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 408,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 522,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 526,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 223,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 616,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 568,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 434,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 478,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 512,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 103,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aff58e3d103dce1459576975a3ac3ac0
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,707 +0,0 @@
|
||||
{
|
||||
"levelId": 8,
|
||||
"levelName": "Birthday Cake",
|
||||
"gridRows": 25,
|
||||
"gridCols": 25,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 207,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 43,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 147,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 146,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 167,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 133,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 189,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 196,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 142,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 156,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 202,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 138,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 21,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 121,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 4,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 33,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 77,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 127,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 29,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 179,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 183,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 111,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 38,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 61,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 113,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 88,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 405,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 345,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 329,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 330,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 307,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 335,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 339,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 342,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 316,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 236,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 308,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 261,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 282,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 258,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 288,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 240,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 343,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 416,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 391,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 381,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 357,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 457,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 508,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 557,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 608,
|
||||
"path": [
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 612,
|
||||
"path": [
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 586,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 537,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 463,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 567,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 467,
|
||||
"path": [
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 515,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 466,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 590,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 116,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 221,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 237,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a4d2a2404aadaf5419d432c10dbd13e7
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 337ca2776b412f34397938ec7ea1df77
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,948 +0,0 @@
|
||||
{
|
||||
"levelId": 10,
|
||||
"levelName": "lv106",
|
||||
"gridRows": 28,
|
||||
"gridCols": 22,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 528,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 533,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 538,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 543,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 548,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 65,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 60,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 55,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 50,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 45,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 419,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 265,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 111,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 593,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 71,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 3,
|
||||
"path": [
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 452,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 317,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 276,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 219,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 318,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 315,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 227,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 190,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 205,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 12,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 32,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 75,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 27,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 44,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 218,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 301,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 305,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 238,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 175,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 17,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 42,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 131,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 105,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 141,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 159,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 573,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 434,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 523,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 613,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 504,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 458,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 457,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 455,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 430,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 429,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 397,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 352,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 330,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 312,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 243,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 158,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 199,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 222,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 597,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 585,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 541,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 485,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"startPoint": 409,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 65,
|
||||
"startPoint": 410,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 66,
|
||||
"startPoint": 602,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 67,
|
||||
"startPoint": 254,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 68,
|
||||
"startPoint": 198,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 69,
|
||||
"startPoint": 136,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 70,
|
||||
"startPoint": 72,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 704541f01de25584d9767ece1deef974
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,927 +0,0 @@
|
||||
{
|
||||
"levelId": 11,
|
||||
"levelName": "lv107",
|
||||
"gridRows": 29,
|
||||
"gridCols": 23,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 666,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 663,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 610,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 519,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 643,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 528,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 481,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 636,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 634,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 523,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 591,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 572,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 476,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 473,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 359,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 343,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 336,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 175,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 22,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 273,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 295,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 270,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 228,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 223,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 39,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 134,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 607,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 648,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 644,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 601,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 575,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 460,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 419,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 393,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 372,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 468,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 584,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 466,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 576,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 195,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 6,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 92,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 69,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 305,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 309,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 253,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 230,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 186,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 118,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 139,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 255,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 282,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 166,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 260,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 50,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 79,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 29,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 169,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 121,
|
||||
"path": [
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 97,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 114,
|
||||
"path": [
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 204,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 16,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"startPoint": 179,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 65,
|
||||
"startPoint": 64,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 66,
|
||||
"startPoint": 531,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 67,
|
||||
"startPoint": 534,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 68,
|
||||
"startPoint": 143,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 69,
|
||||
"startPoint": 119,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 70,
|
||||
"startPoint": 511,
|
||||
"path": [
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 71,
|
||||
"startPoint": 440,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 23ee69bec78952c4f9169a1074366dcc
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9c8479c2a0a27c14f9463311ef0654cb
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,961 +0,0 @@
|
||||
{
|
||||
"levelId": 13,
|
||||
"levelName": "lv109",
|
||||
"gridRows": 29,
|
||||
"gridCols": 23,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 581,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 603,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 375,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 424,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 480,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 502,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 402,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 649,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 281,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 340,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 363,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 406,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 333,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 356,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 359,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 449,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 497,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 395,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 351,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 326,
|
||||
"path": [
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 276,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 283,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 308,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 238,
|
||||
"path": [
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 147,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 31,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 10,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 5,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 138,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 76,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 322,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 391,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 647,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 622,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 632,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 606,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 585,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 633,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 314,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 290,
|
||||
"path": [
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 15,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 124,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 84,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 35,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 614,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 660,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 617,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 595,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 527,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 457,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 458,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 232,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 187,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 116,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 24,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 371,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 347,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 508,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 560,
|
||||
"path": [
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 445,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 515,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 588,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 518,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"startPoint": 16,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 65,
|
||||
"startPoint": 20,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 66,
|
||||
"startPoint": 127,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 67,
|
||||
"startPoint": 106,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 68,
|
||||
"startPoint": 287,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 69,
|
||||
"startPoint": 241,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 70,
|
||||
"startPoint": 174,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 71,
|
||||
"startPoint": 321,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 72,
|
||||
"startPoint": 318,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 73,
|
||||
"startPoint": 269,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 74,
|
||||
"startPoint": 249,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 75,
|
||||
"startPoint": 251,
|
||||
"path": [
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 76,
|
||||
"startPoint": 44,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 77,
|
||||
"startPoint": 226,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 78,
|
||||
"startPoint": 180,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 79,
|
||||
"startPoint": 135,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 80,
|
||||
"startPoint": 115,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1df87935ca971704ea13ee2158b63ff8
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,307 +0,0 @@
|
||||
{
|
||||
"levelId": 14,
|
||||
"levelName": "lv11",
|
||||
"gridRows": 15,
|
||||
"gridCols": 13,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 188,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 136,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 98,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 187,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 194,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 181,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 168,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 105,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 156,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 115,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 78,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 57,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 16,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 52,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 0,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 5,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 33,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 7,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 10,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 126,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 109,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 85acf49151e2c964795c0bc995a91547
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0c3a7b8f82b9b5b448315f564cbd9d36
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,786 +0,0 @@
|
||||
{
|
||||
"levelId": 16,
|
||||
"levelName": "lv111",
|
||||
"gridRows": 23,
|
||||
"gridCols": 23,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 236,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 327,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 307,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 491,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 521,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 448,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 450,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 267,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 241,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 242,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 331,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 220,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 103,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 32,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 317,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 413,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 412,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 227,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 294,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 503,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 507,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 104,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 120,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 304,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 280,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 211,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 9,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 5,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 70,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 138,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 488,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 461,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 349,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 277,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 40,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 42,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 271,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 131,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 90,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 113,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 71,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 143,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 75,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 518,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 284,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 268,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 149,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 308,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 379,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 84,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ab7220bbfd3626b4a85f158351e48f4e
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,783 +0,0 @@
|
||||
{
|
||||
"levelId": 17,
|
||||
"levelName": "Spiderman",
|
||||
"gridRows": 30,
|
||||
"gridCols": 30,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 12,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 42,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 199,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 21,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 229,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 324,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 409,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 740,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 523,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 525,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 430,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 401,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 313,
|
||||
"path": [
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 376,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 284,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 374,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 311,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 278,
|
||||
"path": [
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 318,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 291,
|
||||
"path": [
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 131,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 191,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 168,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 196,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 257,
|
||||
"path": [
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 888,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 339,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 400,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 348,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 228,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 40,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 109,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 248,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 524,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 431,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 438,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 493,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 495,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 728,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 741,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 577,
|
||||
"path": [
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 637,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 638,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 549,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 612,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 555,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 556,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 620,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 673,
|
||||
"path": [
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 731,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 764,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 675,
|
||||
"path": [
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 762,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 851,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 769,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 261,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 379,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 347,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 613,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 770,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"right",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 772,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 591,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 439,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bfce31ec8dc8d9649adfc215f6d6265a
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,761 +0,0 @@
|
||||
{
|
||||
"levelId": 18,
|
||||
"levelName": "Plus Sign",
|
||||
"gridRows": 28,
|
||||
"gridCols": 22,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 599,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 461,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 175,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 5,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 396,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 287,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 376,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 401,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 226,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 227,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 447,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 469,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 513,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 558,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 392,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 437,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 282,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 214,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 370,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 262,
|
||||
"path": [
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 393,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 307,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 388,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 390,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 256,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 213,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 183,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 57,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 161,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 122,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 430,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 406,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 253,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 384,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 164,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 403,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 293,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 247,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 267,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 265,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 520,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 367,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 345,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 234,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 212,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 36,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 427,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 583,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 559,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 561,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 543,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 540,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 586,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 409,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 405,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 423,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 01d7c134255f4f948ac4e83d908233f4
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1e980673d7cef5142bfa2b368134d2a4
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,694 +0,0 @@
|
||||
{
|
||||
"levelId": 20,
|
||||
"levelName": "lv115",
|
||||
"gridRows": 30,
|
||||
"gridCols": 25,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 533,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 604,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 550,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 580,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 500,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 452,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 532,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 530,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 480,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 749,
|
||||
"path": []
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 542,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 445,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 518,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 544,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 572,
|
||||
"path": [
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 547,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 646,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 300,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 321,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 119,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 320,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 195,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 294,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 181,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 182,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 105,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 79,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 29,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 255,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 276,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 279,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 256,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 285,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 262,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 160,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 260,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 239,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 312,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 385,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 585,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 685,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 737,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 638,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 622,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 621,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 449,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 639,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 560,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 739,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 507,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 652,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 625,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 18,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 67,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 205,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 228,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 230,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9327f41c9f966d344a66969437de1a29
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,989 +0,0 @@
|
||||
{
|
||||
"levelId": 21,
|
||||
"levelName": "lv116",
|
||||
"gridRows": 25,
|
||||
"gridCols": 25,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 502,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 582,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 482,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 608,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 587,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 487,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 613,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 592,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 492,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 618,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 597,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 497,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 352,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 358,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 363,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 367,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 452,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 457,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 462,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 467,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 472,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 227,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 233,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 237,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 243,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 347,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 342,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 337,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 332,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 327,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 202,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 103,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 108,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 112,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 117,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 222,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 217,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 207,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 212,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 77,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 3,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 8,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 13,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 18,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 97,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 92,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 87,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 82,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 31,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 33,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 131,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 128,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 279,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 331,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 258,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 336,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 285,
|
||||
"path": [
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 379,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 406,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 140,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 139,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 338,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 315,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"startPoint": 391,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 65,
|
||||
"startPoint": 463,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 66,
|
||||
"startPoint": 396,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 67,
|
||||
"startPoint": 468,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 68,
|
||||
"startPoint": 516,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 69,
|
||||
"startPoint": 511,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 70,
|
||||
"startPoint": 535,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 71,
|
||||
"startPoint": 586,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 72,
|
||||
"startPoint": 580,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 73,
|
||||
"startPoint": 461,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 74,
|
||||
"startPoint": 383,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 75,
|
||||
"startPoint": 96,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 76,
|
||||
"startPoint": 65,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 77,
|
||||
"startPoint": 91,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 78,
|
||||
"startPoint": 145,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 79,
|
||||
"startPoint": 211,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 80,
|
||||
"startPoint": 60,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 81,
|
||||
"startPoint": 185,
|
||||
"path": [
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 82,
|
||||
"startPoint": 343,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 83,
|
||||
"startPoint": 290,
|
||||
"path": [
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 84,
|
||||
"startPoint": 518,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 85,
|
||||
"startPoint": 521,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 86,
|
||||
"startPoint": 594,
|
||||
"path": [
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 87,
|
||||
"startPoint": 565,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 88,
|
||||
"startPoint": 328,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 89,
|
||||
"startPoint": 184,
|
||||
"path": [
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 90,
|
||||
"startPoint": 268,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 91,
|
||||
"startPoint": 218,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3cfdef55dd601e845b76a64c3100286c
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: effe2235f300b954eac797d686f44dd4
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2845cd0e174200940b0681ce18449022
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,989 +0,0 @@
|
||||
{
|
||||
"levelId": 24,
|
||||
"levelName": "lv119",
|
||||
"gridRows": 30,
|
||||
"gridCols": 25,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 725,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 175,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 749,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 734,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 200,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 709,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 249,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 248,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 224,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 297,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 245,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 594,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 673,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 595,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 646,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 600,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 651,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 626,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 705,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 585,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 638,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 663,
|
||||
"path": [
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 612,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 560,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 536,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 513,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 238,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 286,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 555,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 504,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 477,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 427,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 460,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 385,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 412,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 544,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 347,
|
||||
"path": [
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 394,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 396,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 495,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 338,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 355,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 227,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 279,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 228,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 174,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 149,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 147,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 146,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 69,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 159,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 42,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 158,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 54,
|
||||
"startPoint": 115,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 55,
|
||||
"startPoint": 82,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 56,
|
||||
"startPoint": 108,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 57,
|
||||
"startPoint": 57,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 58,
|
||||
"startPoint": 55,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 59,
|
||||
"startPoint": 101,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 60,
|
||||
"startPoint": 77,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 61,
|
||||
"startPoint": 35,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 62,
|
||||
"startPoint": 62,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 63,
|
||||
"startPoint": 64,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 64,
|
||||
"startPoint": 61,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 440b34ba1a18b83478ee8960ca0d10bc
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,469 +0,0 @@
|
||||
{
|
||||
"levelId": 25,
|
||||
"levelName": "lv12",
|
||||
"gridRows": 20,
|
||||
"gridCols": 15,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 202,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 203,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 216,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 217,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 159,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 291,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 292,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 295,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 233,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 296,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 120,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 221,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 208,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 192,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 150,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 199,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 213,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 226,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 258,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 285,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 164,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 103,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 56,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 29,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 105,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 106,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 75,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 34,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 79,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 20,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 184,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 69,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 78f5e7ab9bb35f64fb887d71e857109b
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,651 +0,0 @@
|
||||
{
|
||||
"levelId": 26,
|
||||
"levelName": "lv120",
|
||||
"gridRows": 25,
|
||||
"gridCols": 25,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 258,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 541,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 415,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 440,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 540,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 438,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 561,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 511,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 409,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 461,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 460,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 359,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 361,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 311,
|
||||
"path": [
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 315,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 265,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 233,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 237,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 407,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 257,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 302,
|
||||
"path": [
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 553,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 527,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 454,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 282,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 453,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 426,
|
||||
"path": [
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 329,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 180,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 92,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 58,
|
||||
"path": [
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 35,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 167,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 63,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 84,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 159,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 111,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 11,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 138,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 90,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 140,
|
||||
"path": [
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 155,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 442,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 317,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 449,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 371,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 498,
|
||||
"path": [
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 422,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 470,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 444,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 342,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 395,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9528e44af48775a45aa8bc2ff5cdafa7
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3ca468561bf74e8429db3f759fc70317
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6fbcc77627095a478c218d308636d4b
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,716 +0,0 @@
|
||||
{
|
||||
"levelId": 29,
|
||||
"levelName": "lv123",
|
||||
"gridRows": 25,
|
||||
"gridCols": 20,
|
||||
"pointSpacing": 60,
|
||||
"arrows": [
|
||||
{
|
||||
"id": 1,
|
||||
"startPoint": 487,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"startPoint": 493,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"startPoint": 318,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"startPoint": 488,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"startPoint": 332,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"startPoint": 228,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"startPoint": 273,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"startPoint": 237,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"startPoint": 193,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"startPoint": 367,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"startPoint": 343,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"startPoint": 381,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"startPoint": 465,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"startPoint": 406,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"startPoint": 425,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"startPoint": 388,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"startPoint": 450,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"startPoint": 472,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"startPoint": 351,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"startPoint": 313,
|
||||
"path": [
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"startPoint": 410,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"startPoint": 474,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"startPoint": 436,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"startPoint": 398,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"down"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"startPoint": 166,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"startPoint": 6,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"startPoint": 12,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"startPoint": 51,
|
||||
"path": [
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"startPoint": 97,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"startPoint": 279,
|
||||
"path": [
|
||||
"down",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"startPoint": 276,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"startPoint": 341,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"startPoint": 260,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"startPoint": 200,
|
||||
"path": [
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"startPoint": 241,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"down",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"startPoint": 222,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 37,
|
||||
"startPoint": 187,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"startPoint": 344,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"startPoint": 347,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"startPoint": 308,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"startPoint": 285,
|
||||
"path": [
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"startPoint": 246,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"startPoint": 189,
|
||||
"path": [
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"left",
|
||||
"down",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 44,
|
||||
"startPoint": 146,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"up",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 45,
|
||||
"startPoint": 87,
|
||||
"path": [
|
||||
"right",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"down",
|
||||
"down",
|
||||
"right",
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 46,
|
||||
"startPoint": 157,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"left",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 47,
|
||||
"startPoint": 170,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"up",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"startPoint": 114,
|
||||
"path": [
|
||||
"right",
|
||||
"down",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 49,
|
||||
"startPoint": 74,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 50,
|
||||
"startPoint": 169,
|
||||
"path": [
|
||||
"up",
|
||||
"up"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 51,
|
||||
"startPoint": 148,
|
||||
"path": [
|
||||
"up",
|
||||
"up",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 52,
|
||||
"startPoint": 153,
|
||||
"path": [
|
||||
"left",
|
||||
"left",
|
||||
"down",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 53,
|
||||
"startPoint": 248,
|
||||
"path": [
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"right",
|
||||
"up",
|
||||
"left",
|
||||
"left",
|
||||
"left"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e8ddab90372f6074b9f1677000344f56
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||