Commit 3a937be2 authored by 杨泽宇's avatar 杨泽宇

更新

parent 0b09ad0c
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Zeus.DTC;
public class AGVDemoV2 : MonoBehaviour
{
public LoginManager manager;
public DTAGVManager AGVManager;
public void Update()
{
UpdatePosition();
}
private void UpdatePosition()
{
AGVManager.AddMoveMsg("AGV1", manager.position);
}
}
fileFormatVersion: 2
guid: 70ce38d3ef83a1f438e6ed87bac54356
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using Zeus.SQLite;
using LitJson;
using System.IO;
using System.Diagnostics;
using System.Linq;
using Debug = UnityEngine.Debug;
using System;
/// <summary>
/// 模拟数据功能中心
/// </summary>
public class CrrcSimManager : MonoBehaviour
{
public bool IsRecord;
public string DBName = "crrc";
protected SQLiteConnection _connection;
public LoginManager Manager;
public TMPro.TMP_Text Msg;
public TMPro.TMP_Text Error;
public Button StartBtn;
public Button StopBtn;
public Button QuitBtn;
public Button OpenFile;
[Header("模拟播放设置")]
[Tooltip("加载数据的开始时间")]
public float StartTime = 0;
[Tooltip("时间尺度,越小时间越快")]
public float TimeScale = 1;
[Tooltip("初始加载数据的时间间隔")]
public int PreLoadSecond = 100;
private string _dbName;
private int _errorNumber;
private System.DateTime _startTime;
private int _dataNumber;
private bool _isRecording = false;
private float _recordTime = 0;
private float _playTime = 0;
/// <summary>
/// 加载的数据
/// </summary>
private IEnumerable<IGrouping<float, SimJsonData>> _rsBuffer;
private Dictionary<float, IEnumerable<SimJsonData>> _dataDic;
void Start()
{
if (IsRecord)
{
Manager.OnReceiveMsg.AddListener(_saveData);
Manager.OnReceiveError.AddListener(_onError);
StartBtn?.onClick.AddListener(StartRecord);
StopBtn?.onClick.AddListener(StopRecord);
QuitBtn?.onClick.AddListener(() => { Application.Quit(); });
OpenFile.onClick.AddListener(_openFile);
//Manager.LoadConfig();
}
else
{
}
}
public virtual void StartPlay()
{
string path = DBName + ".db";
if (!File.Exists(path))
{
Debug.Log($"数据库:{path}不存在");
}
_connection = new SQLiteConnection(path, SQLiteOpenFlags.ReadOnly);
var start_time = StartTime;
var end_time = start_time + PreLoadSecond;
Debug.Log($"{start_time}-{end_time}");
_selectDataSet(start_time, end_time);
StartSendSimMsg();
//Debug.Log(_rsBuffer.Count());
//foreach (var item in _rsBuffer)
//{
// Debug.Log(item.Key.ToString("G"));
// foreach (var item2 in item)
// {
// Debug.Log(item2.DataType);
// }
//}
}
/// <summary>
/// 从数据库中选择延迟时间在指定范围内的数据,并按照延迟时间进行分组,最终将结果存储在 _rsBuffer 变量中。
/// </summary>
/// <param name="start_time"></param>
/// <param name="end_time"></param>
private void _selectDataSet(float start_time, float end_time)
{
_rsBuffer = _connection.Table<SimJsonData>()
.Where(x => x.DelaySecond >= start_time && x.DelaySecond < end_time)
.GroupBy(x => x.DelaySecond);
}
private bool _isSending = false;
public void StartSendSimMsg()
{
if (_isSending)
{
return;
}
_isSending = true;
StartCoroutine(_startSend());
}
public void StopSendSimMsg()
{
_isSending = false;
}
private IEnumerator _startSend()
{
var em = _rsBuffer.GetEnumerator();
em.MoveNext();
if (_rsBuffer.Count()<1)
{
Debug.LogError("没有数据");
yield break;
}
_playTime = _rsBuffer.First().Key;
Debug.Log(_playTime);
while (_isSending)
{
var current = em.Current;
var ctime = current.Key*TimeScale;
if (ctime<=_playTime)
{
foreach (var item in current)
{
if (item.DataType.Equals("LitJson.JsonData"))
{
var msg = JsonMapper.ToObject(item.JsonValue);
Manager.OnReceiveMsg.Invoke(msg, item.Param);
}
else
{
var tt = System.Type.GetType(item.Param);
var msg = JsonMapper.ToObject(item.JsonValue, tt);
Manager.OnReceiveMsg.Invoke(msg, null);
}
}
if (!em.MoveNext())
{
var start_time = ctime;
var end_time = start_time + PreLoadSecond;
//Debug.Log($"{start_time}-{end_time}");
_selectDataSet(start_time,end_time);
em = _rsBuffer.GetEnumerator();
em.MoveNext();
}
}
_playTime += Time.deltaTime;
yield return null;
}
}
#region 记录相关逻辑
public virtual void StartRecord()
{
Msg.text = "开始";
Error.text = "";
_errorNumber = 0;
_dataNumber = 0;
_startTime = System.DateTime.Now;
_dbName = DBName + System.DateTime.Now.ToString("yyyy-MM-dd-hhmmss") + ".db";
try
{
_connection = new SQLiteConnection(_dbName, SQLiteOpenFlags.ReadWrite | SQLiteOpenFlags.Create);
}
catch(Exception e){
Msg.text = e.ToString();
}
_connection.CreateTable<SimJsonData>();
_isRecording = true;
_recordTime = 0;
Manager.StartLogin();
}
public virtual void StopRecord()
{
_connection.Dispose();
_isRecording = false;
//Manager.StopRequestData();
}
protected void _onError(string eeror)
{
_errorNumber++;
Error.text = $"采集失败:{_errorNumber}";
}
protected void _saveData(object data, string parameter)
{
SimJsonData js = new SimJsonData() { JsonValue = JsonMapper.ToJson(data), DelaySecond = _recordTime, DataType = data.GetType().ToString(), Param = parameter };
_connection.Insert(js);
_dataNumber++;
}
protected void _openFile()
{
if (File.Exists(_dbName))
{
Process.Start("explorer", "/select,\"" + _dbName + "\"");
}
}
#endregion
private void Update()
{
if (_isRecording)
{
Msg.text = $"采集时长:{_recordTime.ToString("0")},采集数据:{_dataNumber}";
_recordTime += Time.deltaTime;
}
}
private void OnDisable()
{
if (_connection != null)
{
_connection.Dispose();
}
}
[System.Serializable]
public class SimJsonData
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public float DelaySecond { get; set; }
public string DataType { get; set; }
public string JsonValue { get; set; }
public string Param { get; set; }
}
}
fileFormatVersion: 2
guid: 15ea17d1782e6ce46946baa53e2270a6
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Zeus.SQLite;
using System.Linq;
using LitJson;
using System.IO;
/// <summary>
/// 读取db文件数据
/// </summary>
public class DatabaseReader : MonoBehaviour
{
[Tooltip("db文件的名字")]
public string DBName;
[Tooltip("获取信息管理器")]
public LoginManager Manager;
[Header("模拟播放设置")]
[Tooltip("加载数据的开始时间")]
public float StartTime = 0;
[Tooltip("时间尺度,越小时间越快")]
public float TimeScale = 1; // 模拟数据的播放速度
[Tooltip("初始加载数据的时间间隔")]
public int PreLoadSecond = 100; // 控制在开始播放模拟数据时预先加载的时间范围,确保模拟数据的流畅播放。
[Tooltip("存储模拟数据的数据结构")]
private IEnumerable<IGrouping<float, SimJsonData>> _rsBuffer;//存储模拟数据并按延迟时间进行分组的数据结构,为模拟数据的加载和处理提供了便利。
[Tooltip("是否正在发送模拟消息")]
private bool _isSending = false;
[Tooltip("记录模拟数据播放的当前时间")]
private float _playTime = 0;
[Tooltip("SQLite连接对象")]
private SQLiteConnection connection;
// Start is called before the first frame update
void Start()
{
StartPlay();
}
/// <summary>
/// 读取db文件中的测试数据
/// </summary>
public virtual void StartPlay()
{
string path = DBName + ".db";
if (!File.Exists(path))
{
Debug.Log($"数据库:{path}不存在");
}
connection = new SQLiteConnection(path, SQLiteOpenFlags.ReadOnly);
var start_time = StartTime;
var end_time = start_time + PreLoadSecond;
Debug.Log($"{start_time}-{end_time}");
_selectDataSet(start_time, end_time);
StartSendSimMsg();
}
/// <summary>
/// 负责从数据库中选择数据并按延迟时间进行分组,为后续模拟数据的加载和处理提供了准备工作。
/// </summary>
/// <param name="start_time"></param>
/// <param name="end_time"></param>
private void _selectDataSet(float start_time, float end_time)
{
_rsBuffer = connection.Table<SimJsonData>()
.Where(x => x.DelaySecond >= start_time && x.DelaySecond < end_time)
.GroupBy(x => x.DelaySecond);
}
/// <summary>
/// 启动模拟消息的发送过程,从而触发模拟数据的播放或发送,用于模拟特定场景下的消息传递、事件触发等情况。
/// </summary>
public void StartSendSimMsg()
{
if (_isSending)
{
return;
}
_isSending = true;
StartCoroutine(_startSend());
}
/// <summary>
/// 用于模拟数据的发送过程。
/// </summary>
/// <returns></returns>
private IEnumerator _startSend()
{
var em = _rsBuffer.GetEnumerator();
em.MoveNext();
if (_rsBuffer.Count() < 1)
{
Debug.LogError("没有数据");
yield break;
}
_playTime = _rsBuffer.First().Key;
Debug.Log(_playTime);
while (_isSending)
{
var current = em.Current;
var ctime = current.Key * TimeScale;
if (ctime <= _playTime)
{
foreach (var item in current)
{
if (item.DataType.Equals("LitJson.JsonData"))
{
var msg = JsonMapper.ToObject(item.JsonValue);
Manager.OnReceiveMsg.Invoke(msg, item.Param);
}
else
{
var tt = System.Type.GetType(item.Param);
var msg = JsonMapper.ToObject(item.JsonValue, tt);
Manager.OnReceiveMsg.Invoke(msg, null);
}
}
if (!em.MoveNext())
{
var start_time = ctime;
var end_time = start_time + PreLoadSecond;
//Debug.Log($"{start_time}-{end_time}");
_selectDataSet(start_time, end_time);
em = _rsBuffer.GetEnumerator();
em.MoveNext();
}
}
_playTime += Time.deltaTime;
yield return null;
}
}
/// <summary>
/// 用于标识模拟数据中的一条记录
/// </summary>
[System.Serializable]
public class SimJsonData
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public float DelaySecond { get; set; }
public string DataType { get; set; }
public string JsonValue { get; set; }
public string Param { get; set; }
}
}
fileFormatVersion: 2
guid: 688aa349ad8f0444fa5e8033f6379dee
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections;
using UnityEngine.Networking;
using UnityEngine;
using TMPro;
public class LoginManager : MonoBehaviour
{
public TMP_InputField productionlineID;
public string ProductionlineID;
private RobotPositionData positionData;
[Header("收到服务器信息事件")]
public ReceiveMsgEvent<object, string> OnReceiveMsg = new ReceiveMsgEvent<object, string>();
public ReceiveMsgEvent<string> OnReceiveError = new ReceiveMsgEvent<string>();
[Space]
[Header("获取的信息")]
public Vector3 position;
private void Awake()
{
OnReceiveMsg.AddListener(_getData);
......@@ -25,6 +27,10 @@ public class LoginManager : MonoBehaviour
StartCoroutine(GetPositionData());
}
public void StartLogin()
{
StartCoroutine(GetPositionData());
}
protected void _getData(object data, string parameter)
{
......@@ -40,7 +46,8 @@ public class LoginManager : MonoBehaviour
{
while (true)
{
using (UnityWebRequest request = UnityWebRequest.Get(ProductionlineID))
using (UnityWebRequest request = UnityWebRequest.Get(productionlineID.text))
{
// 设置请求头
request.SetRequestHeader("Content-Type", "application/json");
......
{
"advancedPointList":[{"className":"LocationMark","instanceName":"LM1","pos":{"x":6.469,"y":4.802},"dir":1.5707963267948966,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}]},{"className":"LocationMark","instanceName":"LM2","pos":{"x":6.469,"y":6.774},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM3","pos":{"x":6.469,"y":8.839},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM4","pos":{"x":7.059,"y":10.522},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM5","pos":{"x":7.059,"y":13},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM6","pos":{"x":7.071,"y":14.499},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM7","pos":{"x":7.059,"y":15.925},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM8","pos":{"x":7.059,"y":16.753},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM9","pos":{"x":7.059,"y":18.757},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM10","pos":{"x":8.8,"y":18.757},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM11","pos":{"x":9.7,"y":18.757},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM12","pos":{"x":10.6,"y":18.757},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM13","pos":{"x":11.5,"y":18.757},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM14","pos":{"x":12.4,"y":18.757},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM15","pos":{"x":13.3,"y":18.757},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM16","pos":{"x":13.305,"y":20.588},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM17","pos":{"x":11.505,"y":20.588},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM18","pos":{"x":10.605,"y":20.588},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM19","pos":{"x":9.705,"y":20.588},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM20","pos":{"x":8.805,"y":20.588},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM21","pos":{"x":12.405,"y":20.588},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM22","pos":{"x":7.064,"y":20.588},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM23","pos":{"x":10.613,"y":22.441},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM24","pos":{"x":11.513,"y":22.441},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM25","pos":{"x":7.072,"y":22.441},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM26","pos":{"x":12.413,"y":22.441},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM27","pos":{"x":13.313,"y":22.441},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM28","pos":{"x":9.713,"y":22.441},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM29","pos":{"x":8.813,"y":22.441},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM30","pos":{"x":10.62,"y":24.263},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM31","pos":{"x":12.42,"y":24.263},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM32","pos":{"x":7.079,"y":24.263},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM33","pos":{"x":13.32,"y":24.263},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM34","pos":{"x":11.52,"y":24.263},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM35","pos":{"x":8.82,"y":24.263},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM36","pos":{"x":9.72,"y":24.263},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM37","pos":{"x":7.071,"y":26.619},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM38","pos":{"x":11.512,"y":26.619},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM39","pos":{"x":8.812,"y":26.619},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM40","pos":{"x":12.412,"y":26.619},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM41","pos":{"x":10.612,"y":26.619},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM42","pos":{"x":9.712,"y":26.619},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM43","pos":{"x":13.312,"y":26.619},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM44","pos":{"x":19.85,"y":24.265},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM45","pos":{"x":18.95,"y":24.265},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM46","pos":{"x":18.05,"y":24.265},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM47","pos":{"x":17.15,"y":24.26},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM48","pos":{"x":16.25,"y":24.26},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM49","pos":{"x":15.35,"y":24.255},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM50","pos":{"x":18.045,"y":22.421},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM51","pos":{"x":18.945,"y":22.421},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM52","pos":{"x":16.245,"y":22.416},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM53","pos":{"x":19.845,"y":22.421},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM54","pos":{"x":17.145,"y":22.416},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM55","pos":{"x":15.345,"y":22.411},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM56","pos":{"x":18.051,"y":20.571},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM57","pos":{"x":18.951,"y":20.571},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM58","pos":{"x":16.251,"y":20.566},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM59","pos":{"x":19.851,"y":20.571},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM60","pos":{"x":17.151,"y":20.566},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM61","pos":{"x":15.351,"y":20.561},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM62","pos":{"x":18.049,"y":18.73},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM63","pos":{"x":18.949,"y":18.73},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM64","pos":{"x":16.249,"y":18.715},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM65","pos":{"x":19.849,"y":18.73},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM66","pos":{"x":17.149,"y":18.72},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM67","pos":{"x":15.349,"y":18.71},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM70","pos":{"x":21.77,"y":20.571},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM71","pos":{"x":21.77,"y":18.73},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM72","pos":{"x":21.77,"y":22.421},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM73","pos":{"x":21.77,"y":24.265},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"ChargePoint","instanceName":"CP74","pos":{"x":18.651,"y":26.759},"property":[{"key":"prepoint","type":"string","value":"UFA3NQ==","stringValue":"PP75"},{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"ParkPoint","instanceName":"PP75","pos":{"x":19.563,"y":26.759},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM76","pos":{"x":21.77,"y":26.759},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM77","pos":{"x":21.77,"y":28.056},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM78","pos":{"x":18.949,"y":28.056},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM79","pos":{"x":17.149,"y":28.056},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM80","pos":{"x":15.349,"y":28.056},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM81","pos":{"x":13.312,"y":28.056},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM82","pos":{"x":9.712,"y":28.056},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM83","pos":{"x":7.071,"y":28.056},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM84","pos":{"x":11.512,"y":28.056},"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM85","pos":{"x":22.902,"y":4.679},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM86","pos":{"x":22.902,"y":6.508},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM87","pos":{"x":22.902,"y":8.127},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM88","pos":{"x":22.902,"y":9.808},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM89","pos":{"x":22.902,"y":11.691},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM90","pos":{"x":22.902,"y":13.937},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM91","pos":{"x":22.902,"y":15.164},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM92","pos":{"x":22.902,"y":16.364},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true},{"className":"LocationMark","instanceName":"LM93","pos":{"x":22.902,"y":18.73},"dir":-3.1415926535897931,"property":[{"key":"spin","type":"bool","value":"ZmFsc2U=","boolValue":false}],"ignoreDir":true}],
"advancedCurveList":[{"className":"DegenerateBezier","instanceName":"LM63-LM62","startPos":{"instanceName":"LM63","pos":{"x":18.949,"y":18.73}},"endPos":{"instanceName":"LM62","pos":{"x":18.049,"y":18.73}},"controlPos1":{"x":18.649,"y":18.73},"controlPos2":{"x":18.349,"y":18.73},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM62-LM63","startPos":{"instanceName":"LM62","pos":{"x":18.049,"y":18.73}},"endPos":{"instanceName":"LM63","pos":{"x":18.949,"y":18.73}},"controlPos1":{"x":18.349,"y":18.73},"controlPos2":{"x":18.649,"y":18.73},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM66-LM64","startPos":{"instanceName":"LM66","pos":{"x":17.149,"y":18.72}},"endPos":{"instanceName":"LM64","pos":{"x":16.249,"y":18.715}},"controlPos1":{"x":16.849,"y":18.718},"controlPos2":{"x":16.549,"y":18.717},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM64-LM66","startPos":{"instanceName":"LM64","pos":{"x":16.249,"y":18.715}},"endPos":{"instanceName":"LM66","pos":{"x":17.149,"y":18.72}},"controlPos1":{"x":16.549,"y":18.717},"controlPos2":{"x":16.849,"y":18.718},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM62-LM66","startPos":{"instanceName":"LM62","pos":{"x":18.049,"y":18.73}},"endPos":{"instanceName":"LM66","pos":{"x":17.149,"y":18.72}},"controlPos1":{"x":17.749,"y":18.727},"controlPos2":{"x":17.449,"y":18.723},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM66-LM62","startPos":{"instanceName":"LM66","pos":{"x":17.149,"y":18.72}},"endPos":{"instanceName":"LM62","pos":{"x":18.049,"y":18.73}},"controlPos1":{"x":17.449,"y":18.723},"controlPos2":{"x":17.749,"y":18.727},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM64-LM67","startPos":{"instanceName":"LM64","pos":{"x":16.249,"y":18.715}},"endPos":{"instanceName":"LM67","pos":{"x":15.349,"y":18.71}},"controlPos1":{"x":15.949,"y":18.714},"controlPos2":{"x":15.649,"y":18.712},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM67-LM64","startPos":{"instanceName":"LM67","pos":{"x":15.349,"y":18.71}},"endPos":{"instanceName":"LM64","pos":{"x":16.249,"y":18.715}},"controlPos1":{"x":15.649,"y":18.712},"controlPos2":{"x":15.949,"y":18.714},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM65-LM63","startPos":{"instanceName":"LM65","pos":{"x":19.849,"y":18.73}},"endPos":{"instanceName":"LM63","pos":{"x":18.949,"y":18.73}},"controlPos1":{"x":19.549,"y":18.73},"controlPos2":{"x":19.249,"y":18.73},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM63-LM65","startPos":{"instanceName":"LM63","pos":{"x":18.949,"y":18.73}},"endPos":{"instanceName":"LM65","pos":{"x":19.849,"y":18.73}},"controlPos1":{"x":19.249,"y":18.73},"controlPos2":{"x":19.549,"y":18.73},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM57-LM56","startPos":{"instanceName":"LM57","pos":{"x":18.951,"y":20.571}},"endPos":{"instanceName":"LM56","pos":{"x":18.051,"y":20.571}},"controlPos1":{"x":18.651,"y":20.571},"controlPos2":{"x":18.351,"y":20.571},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM56-LM57","startPos":{"instanceName":"LM56","pos":{"x":18.051,"y":20.571}},"endPos":{"instanceName":"LM57","pos":{"x":18.951,"y":20.571}},"controlPos1":{"x":18.351,"y":20.571},"controlPos2":{"x":18.651,"y":20.571},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM60-LM58","startPos":{"instanceName":"LM60","pos":{"x":17.151,"y":20.566}},"endPos":{"instanceName":"LM58","pos":{"x":16.251,"y":20.566}},"controlPos1":{"x":16.851,"y":20.566},"controlPos2":{"x":16.551,"y":20.566},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM58-LM60","startPos":{"instanceName":"LM58","pos":{"x":16.251,"y":20.566}},"endPos":{"instanceName":"LM60","pos":{"x":17.151,"y":20.566}},"controlPos1":{"x":16.551,"y":20.566},"controlPos2":{"x":16.851,"y":20.566},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM56-LM60","startPos":{"instanceName":"LM56","pos":{"x":18.051,"y":20.571}},"endPos":{"instanceName":"LM60","pos":{"x":17.151,"y":20.566}},"controlPos1":{"x":17.751,"y":20.569},"controlPos2":{"x":17.451,"y":20.567},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM60-LM56","startPos":{"instanceName":"LM60","pos":{"x":17.151,"y":20.566}},"endPos":{"instanceName":"LM56","pos":{"x":18.051,"y":20.571}},"controlPos1":{"x":17.451,"y":20.567},"controlPos2":{"x":17.751,"y":20.569},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM58-LM61","startPos":{"instanceName":"LM58","pos":{"x":16.251,"y":20.566}},"endPos":{"instanceName":"LM61","pos":{"x":15.351,"y":20.561}},"controlPos1":{"x":15.951,"y":20.564},"controlPos2":{"x":15.651,"y":20.562},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM61-LM58","startPos":{"instanceName":"LM61","pos":{"x":15.351,"y":20.561}},"endPos":{"instanceName":"LM58","pos":{"x":16.251,"y":20.566}},"controlPos1":{"x":15.651,"y":20.562},"controlPos2":{"x":15.951,"y":20.564},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM59-LM57","startPos":{"instanceName":"LM59","pos":{"x":19.851,"y":20.571}},"endPos":{"instanceName":"LM57","pos":{"x":18.951,"y":20.571}},"controlPos1":{"x":19.551,"y":20.571},"controlPos2":{"x":19.251,"y":20.571},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM57-LM59","startPos":{"instanceName":"LM57","pos":{"x":18.951,"y":20.571}},"endPos":{"instanceName":"LM59","pos":{"x":19.851,"y":20.571}},"controlPos1":{"x":19.251,"y":20.571},"controlPos2":{"x":19.551,"y":20.571},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM51-LM50","startPos":{"instanceName":"LM51","pos":{"x":18.945,"y":22.421}},"endPos":{"instanceName":"LM50","pos":{"x":18.045,"y":22.421}},"controlPos1":{"x":18.645,"y":22.421},"controlPos2":{"x":18.345,"y":22.421},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM50-LM51","startPos":{"instanceName":"LM50","pos":{"x":18.045,"y":22.421}},"endPos":{"instanceName":"LM51","pos":{"x":18.945,"y":22.421}},"controlPos1":{"x":18.345,"y":22.421},"controlPos2":{"x":18.645,"y":22.421},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM54-LM52","startPos":{"instanceName":"LM54","pos":{"x":17.145,"y":22.416}},"endPos":{"instanceName":"LM52","pos":{"x":16.245,"y":22.416}},"controlPos1":{"x":16.845,"y":22.416},"controlPos2":{"x":16.545,"y":22.416},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM52-LM54","startPos":{"instanceName":"LM52","pos":{"x":16.245,"y":22.416}},"endPos":{"instanceName":"LM54","pos":{"x":17.145,"y":22.416}},"controlPos1":{"x":16.545,"y":22.416},"controlPos2":{"x":16.845,"y":22.416},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM50-LM54","startPos":{"instanceName":"LM50","pos":{"x":18.045,"y":22.421}},"endPos":{"instanceName":"LM54","pos":{"x":17.145,"y":22.416}},"controlPos1":{"x":17.745,"y":22.419},"controlPos2":{"x":17.445,"y":22.418},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM54-LM50","startPos":{"instanceName":"LM54","pos":{"x":17.145,"y":22.416}},"endPos":{"instanceName":"LM50","pos":{"x":18.045,"y":22.421}},"controlPos1":{"x":17.445,"y":22.418},"controlPos2":{"x":17.745,"y":22.419},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM52-LM55","startPos":{"instanceName":"LM52","pos":{"x":16.245,"y":22.416}},"endPos":{"instanceName":"LM55","pos":{"x":15.345,"y":22.411}},"controlPos1":{"x":15.945,"y":22.414},"controlPos2":{"x":15.645,"y":22.413},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM55-LM52","startPos":{"instanceName":"LM55","pos":{"x":15.345,"y":22.411}},"endPos":{"instanceName":"LM52","pos":{"x":16.245,"y":22.416}},"controlPos1":{"x":15.645,"y":22.413},"controlPos2":{"x":15.945,"y":22.414},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM53-LM51","startPos":{"instanceName":"LM53","pos":{"x":19.845,"y":22.421}},"endPos":{"instanceName":"LM51","pos":{"x":18.945,"y":22.421}},"controlPos1":{"x":19.545,"y":22.421},"controlPos2":{"x":19.245,"y":22.421},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM51-LM53","startPos":{"instanceName":"LM51","pos":{"x":18.945,"y":22.421}},"endPos":{"instanceName":"LM53","pos":{"x":19.845,"y":22.421}},"controlPos1":{"x":19.245,"y":22.421},"controlPos2":{"x":19.545,"y":22.421},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM38-LM40","startPos":{"instanceName":"LM38","pos":{"x":11.512,"y":26.619}},"endPos":{"instanceName":"LM40","pos":{"x":12.412,"y":26.619}},"controlPos1":{"x":11.812,"y":26.619},"controlPos2":{"x":12.112,"y":26.619},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM40-LM38","startPos":{"instanceName":"LM40","pos":{"x":12.412,"y":26.619}},"endPos":{"instanceName":"LM38","pos":{"x":11.512,"y":26.619}},"controlPos1":{"x":12.112,"y":26.619},"controlPos2":{"x":11.812,"y":26.619},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM37-LM39","startPos":{"instanceName":"LM37","pos":{"x":7.071,"y":26.619}},"endPos":{"instanceName":"LM39","pos":{"x":8.812,"y":26.619}},"controlPos1":{"x":7.651,"y":26.619},"controlPos2":{"x":8.232,"y":26.619},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM39-LM37","startPos":{"instanceName":"LM39","pos":{"x":8.812,"y":26.619}},"endPos":{"instanceName":"LM37","pos":{"x":7.071,"y":26.619}},"controlPos1":{"x":8.232,"y":26.619},"controlPos2":{"x":7.651,"y":26.619},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM41-LM38","startPos":{"instanceName":"LM41","pos":{"x":10.612,"y":26.619}},"endPos":{"instanceName":"LM38","pos":{"x":11.512,"y":26.619}},"controlPos1":{"x":10.912,"y":26.619},"controlPos2":{"x":11.212,"y":26.619},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM38-LM41","startPos":{"instanceName":"LM38","pos":{"x":11.512,"y":26.619}},"endPos":{"instanceName":"LM41","pos":{"x":10.612,"y":26.619}},"controlPos1":{"x":11.212,"y":26.619},"controlPos2":{"x":10.912,"y":26.619},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM40-LM43","startPos":{"instanceName":"LM40","pos":{"x":12.412,"y":26.619}},"endPos":{"instanceName":"LM43","pos":{"x":13.312,"y":26.619}},"controlPos1":{"x":12.712,"y":26.619},"controlPos2":{"x":13.012,"y":26.619},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM43-LM40","startPos":{"instanceName":"LM43","pos":{"x":13.312,"y":26.619}},"endPos":{"instanceName":"LM40","pos":{"x":12.412,"y":26.619}},"controlPos1":{"x":13.012,"y":26.619},"controlPos2":{"x":12.712,"y":26.619},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM39-LM42","startPos":{"instanceName":"LM39","pos":{"x":8.812,"y":26.619}},"endPos":{"instanceName":"LM42","pos":{"x":9.712,"y":26.619}},"controlPos1":{"x":9.112,"y":26.619},"controlPos2":{"x":9.412,"y":26.619},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM42-LM39","startPos":{"instanceName":"LM42","pos":{"x":9.712,"y":26.619}},"endPos":{"instanceName":"LM39","pos":{"x":8.812,"y":26.619}},"controlPos1":{"x":9.412,"y":26.619},"controlPos2":{"x":9.112,"y":26.619},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM42-LM41","startPos":{"instanceName":"LM42","pos":{"x":9.712,"y":26.619}},"endPos":{"instanceName":"LM41","pos":{"x":10.612,"y":26.619}},"controlPos1":{"x":10.012,"y":26.619},"controlPos2":{"x":10.312,"y":26.619},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM41-LM42","startPos":{"instanceName":"LM41","pos":{"x":10.612,"y":26.619}},"endPos":{"instanceName":"LM42","pos":{"x":9.712,"y":26.619}},"controlPos1":{"x":10.312,"y":26.619},"controlPos2":{"x":10.012,"y":26.619},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM31-LM33","startPos":{"instanceName":"LM31","pos":{"x":12.42,"y":24.263}},"endPos":{"instanceName":"LM33","pos":{"x":13.32,"y":24.263}},"controlPos1":{"x":12.719,"y":24.262},"controlPos2":{"x":13.019,"y":24.262},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM33-LM31","startPos":{"instanceName":"LM33","pos":{"x":13.32,"y":24.263}},"endPos":{"instanceName":"LM31","pos":{"x":12.42,"y":24.263}},"controlPos1":{"x":13.019,"y":24.262},"controlPos2":{"x":12.719,"y":24.262},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM34-LM31","startPos":{"instanceName":"LM34","pos":{"x":11.52,"y":24.263}},"endPos":{"instanceName":"LM31","pos":{"x":12.42,"y":24.263}},"controlPos1":{"x":11.819,"y":24.262},"controlPos2":{"x":12.119,"y":24.262},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM31-LM34","startPos":{"instanceName":"LM31","pos":{"x":12.42,"y":24.263}},"endPos":{"instanceName":"LM34","pos":{"x":11.52,"y":24.263}},"controlPos1":{"x":12.119,"y":24.262},"controlPos2":{"x":11.819,"y":24.262},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM30-LM34","startPos":{"instanceName":"LM30","pos":{"x":10.62,"y":24.263}},"endPos":{"instanceName":"LM34","pos":{"x":11.52,"y":24.263}},"controlPos1":{"x":10.919,"y":24.262},"controlPos2":{"x":11.219,"y":24.262},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM34-LM30","startPos":{"instanceName":"LM34","pos":{"x":11.52,"y":24.263}},"endPos":{"instanceName":"LM30","pos":{"x":10.62,"y":24.263}},"controlPos1":{"x":11.219,"y":24.262},"controlPos2":{"x":10.919,"y":24.262},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM35-LM36","startPos":{"instanceName":"LM35","pos":{"x":8.82,"y":24.263}},"endPos":{"instanceName":"LM36","pos":{"x":9.72,"y":24.263}},"controlPos1":{"x":9.119,"y":24.262},"controlPos2":{"x":9.419,"y":24.262},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM36-LM35","startPos":{"instanceName":"LM36","pos":{"x":9.72,"y":24.263}},"endPos":{"instanceName":"LM35","pos":{"x":8.82,"y":24.263}},"controlPos1":{"x":9.419,"y":24.262},"controlPos2":{"x":9.119,"y":24.262},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM36-LM30","startPos":{"instanceName":"LM36","pos":{"x":9.72,"y":24.263}},"endPos":{"instanceName":"LM30","pos":{"x":10.62,"y":24.263}},"controlPos1":{"x":10.019,"y":24.262},"controlPos2":{"x":10.319,"y":24.262},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM30-LM36","startPos":{"instanceName":"LM30","pos":{"x":10.62,"y":24.263}},"endPos":{"instanceName":"LM36","pos":{"x":9.72,"y":24.263}},"controlPos1":{"x":10.319,"y":24.262},"controlPos2":{"x":10.019,"y":24.262},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM32-LM35","startPos":{"instanceName":"LM32","pos":{"x":7.079,"y":24.263}},"endPos":{"instanceName":"LM35","pos":{"x":8.82,"y":24.263}},"controlPos1":{"x":7.658,"y":24.262},"controlPos2":{"x":8.239,"y":24.262},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM35-LM32","startPos":{"instanceName":"LM35","pos":{"x":8.82,"y":24.263}},"endPos":{"instanceName":"LM32","pos":{"x":7.079,"y":24.263}},"controlPos1":{"x":8.239,"y":24.262},"controlPos2":{"x":7.658,"y":24.262},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM23-LM24","startPos":{"instanceName":"LM23","pos":{"x":10.613,"y":22.441}},"endPos":{"instanceName":"LM24","pos":{"x":11.513,"y":22.441}},"controlPos1":{"x":10.913,"y":22.44},"controlPos2":{"x":11.213,"y":22.44},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM24-LM23","startPos":{"instanceName":"LM24","pos":{"x":11.513,"y":22.441}},"endPos":{"instanceName":"LM23","pos":{"x":10.613,"y":22.441}},"controlPos1":{"x":11.213,"y":22.44},"controlPos2":{"x":10.913,"y":22.44},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM25-LM29","startPos":{"instanceName":"LM25","pos":{"x":7.072,"y":22.441}},"endPos":{"instanceName":"LM29","pos":{"x":8.813,"y":22.441}},"controlPos1":{"x":7.652,"y":22.44},"controlPos2":{"x":8.233,"y":22.44},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM29-LM25","startPos":{"instanceName":"LM29","pos":{"x":8.813,"y":22.441}},"endPos":{"instanceName":"LM25","pos":{"x":7.072,"y":22.441}},"controlPos1":{"x":8.233,"y":22.44},"controlPos2":{"x":7.652,"y":22.44},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM28-LM23","startPos":{"instanceName":"LM28","pos":{"x":9.713,"y":22.441}},"endPos":{"instanceName":"LM23","pos":{"x":10.613,"y":22.441}},"controlPos1":{"x":10.013,"y":22.44},"controlPos2":{"x":10.313,"y":22.44},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM23-LM28","startPos":{"instanceName":"LM23","pos":{"x":10.613,"y":22.441}},"endPos":{"instanceName":"LM28","pos":{"x":9.713,"y":22.441}},"controlPos1":{"x":10.313,"y":22.44},"controlPos2":{"x":10.013,"y":22.44},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM29-LM28","startPos":{"instanceName":"LM29","pos":{"x":8.813,"y":22.441}},"endPos":{"instanceName":"LM28","pos":{"x":9.713,"y":22.441}},"controlPos1":{"x":9.113,"y":22.44},"controlPos2":{"x":9.413,"y":22.44},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM28-LM29","startPos":{"instanceName":"LM28","pos":{"x":9.713,"y":22.441}},"endPos":{"instanceName":"LM29","pos":{"x":8.813,"y":22.441}},"controlPos1":{"x":9.413,"y":22.44},"controlPos2":{"x":9.113,"y":22.44},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM24-LM26","startPos":{"instanceName":"LM24","pos":{"x":11.513,"y":22.441}},"endPos":{"instanceName":"LM26","pos":{"x":12.413,"y":22.441}},"controlPos1":{"x":11.813,"y":22.44},"controlPos2":{"x":12.113,"y":22.44},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM26-LM24","startPos":{"instanceName":"LM26","pos":{"x":12.413,"y":22.441}},"endPos":{"instanceName":"LM24","pos":{"x":11.513,"y":22.441}},"controlPos1":{"x":12.113,"y":22.44},"controlPos2":{"x":11.813,"y":22.44},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM26-LM27","startPos":{"instanceName":"LM26","pos":{"x":12.413,"y":22.441}},"endPos":{"instanceName":"LM27","pos":{"x":13.313,"y":22.441}},"controlPos1":{"x":12.713,"y":22.44},"controlPos2":{"x":13.013,"y":22.44},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM27-LM26","startPos":{"instanceName":"LM27","pos":{"x":13.313,"y":22.441}},"endPos":{"instanceName":"LM26","pos":{"x":12.413,"y":22.441}},"controlPos1":{"x":13.013,"y":22.44},"controlPos2":{"x":12.713,"y":22.44},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM19-LM18","startPos":{"instanceName":"LM19","pos":{"x":9.705,"y":20.588}},"endPos":{"instanceName":"LM18","pos":{"x":10.605,"y":20.588}},"controlPos1":{"x":10.005,"y":20.588},"controlPos2":{"x":10.305,"y":20.588},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM18-LM19","startPos":{"instanceName":"LM18","pos":{"x":10.605,"y":20.588}},"endPos":{"instanceName":"LM19","pos":{"x":9.705,"y":20.588}},"controlPos1":{"x":10.305,"y":20.588},"controlPos2":{"x":10.005,"y":20.588},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM20-LM19","startPos":{"instanceName":"LM20","pos":{"x":8.805,"y":20.588}},"endPos":{"instanceName":"LM19","pos":{"x":9.705,"y":20.588}},"controlPos1":{"x":9.105,"y":20.588},"controlPos2":{"x":9.405,"y":20.588},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM19-LM20","startPos":{"instanceName":"LM19","pos":{"x":9.705,"y":20.588}},"endPos":{"instanceName":"LM20","pos":{"x":8.805,"y":20.588}},"controlPos1":{"x":9.405,"y":20.588},"controlPos2":{"x":9.105,"y":20.588},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM21-LM16","startPos":{"instanceName":"LM21","pos":{"x":12.405,"y":20.588}},"endPos":{"instanceName":"LM16","pos":{"x":13.305,"y":20.588}},"controlPos1":{"x":12.705,"y":20.588},"controlPos2":{"x":13.005,"y":20.588},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM16-LM21","startPos":{"instanceName":"LM16","pos":{"x":13.305,"y":20.588}},"endPos":{"instanceName":"LM21","pos":{"x":12.405,"y":20.588}},"controlPos1":{"x":13.005,"y":20.588},"controlPos2":{"x":12.705,"y":20.588},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM17-LM21","startPos":{"instanceName":"LM17","pos":{"x":11.505,"y":20.588}},"endPos":{"instanceName":"LM21","pos":{"x":12.405,"y":20.588}},"controlPos1":{"x":11.805,"y":20.588},"controlPos2":{"x":12.105,"y":20.588},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM21-LM17","startPos":{"instanceName":"LM21","pos":{"x":12.405,"y":20.588}},"endPos":{"instanceName":"LM17","pos":{"x":11.505,"y":20.588}},"controlPos1":{"x":12.105,"y":20.588},"controlPos2":{"x":11.805,"y":20.588},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM22-LM20","startPos":{"instanceName":"LM22","pos":{"x":7.064,"y":20.588}},"endPos":{"instanceName":"LM20","pos":{"x":8.805,"y":20.588}},"controlPos1":{"x":7.644,"y":20.588},"controlPos2":{"x":8.225,"y":20.588},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM20-LM22","startPos":{"instanceName":"LM20","pos":{"x":8.805,"y":20.588}},"endPos":{"instanceName":"LM22","pos":{"x":7.064,"y":20.588}},"controlPos1":{"x":8.225,"y":20.588},"controlPos2":{"x":7.644,"y":20.588},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM18-LM17","startPos":{"instanceName":"LM18","pos":{"x":10.605,"y":20.588}},"endPos":{"instanceName":"LM17","pos":{"x":11.505,"y":20.588}},"controlPos1":{"x":10.905,"y":20.588},"controlPos2":{"x":11.205,"y":20.588},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM17-LM18","startPos":{"instanceName":"LM17","pos":{"x":11.505,"y":20.588}},"endPos":{"instanceName":"LM18","pos":{"x":10.605,"y":20.588}},"controlPos1":{"x":11.205,"y":20.588},"controlPos2":{"x":10.905,"y":20.588},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM9-LM10","startPos":{"instanceName":"LM9","pos":{"x":7.059,"y":18.757}},"endPos":{"instanceName":"LM10","pos":{"x":8.8,"y":18.757}},"controlPos1":{"x":7.639,"y":18.757},"controlPos2":{"x":8.22,"y":18.757},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM10-LM9","startPos":{"instanceName":"LM10","pos":{"x":8.8,"y":18.757}},"endPos":{"instanceName":"LM9","pos":{"x":7.059,"y":18.757}},"controlPos1":{"x":8.22,"y":18.757},"controlPos2":{"x":7.639,"y":18.757},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM10-LM11","startPos":{"instanceName":"LM10","pos":{"x":8.8,"y":18.757}},"endPos":{"instanceName":"LM11","pos":{"x":9.7,"y":18.757}},"controlPos1":{"x":9.1,"y":18.757},"controlPos2":{"x":9.4,"y":18.757},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM11-LM10","startPos":{"instanceName":"LM11","pos":{"x":9.7,"y":18.757}},"endPos":{"instanceName":"LM10","pos":{"x":8.8,"y":18.757}},"controlPos1":{"x":9.4,"y":18.757},"controlPos2":{"x":9.1,"y":18.757},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM11-LM12","startPos":{"instanceName":"LM11","pos":{"x":9.7,"y":18.757}},"endPos":{"instanceName":"LM12","pos":{"x":10.6,"y":18.757}},"controlPos1":{"x":10,"y":18.757},"controlPos2":{"x":10.3,"y":18.757},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM12-LM11","startPos":{"instanceName":"LM12","pos":{"x":10.6,"y":18.757}},"endPos":{"instanceName":"LM11","pos":{"x":9.7,"y":18.757}},"controlPos1":{"x":10.3,"y":18.757},"controlPos2":{"x":10,"y":18.757},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM12-LM13","startPos":{"instanceName":"LM12","pos":{"x":10.6,"y":18.757}},"endPos":{"instanceName":"LM13","pos":{"x":11.5,"y":18.757}},"controlPos1":{"x":10.9,"y":18.757},"controlPos2":{"x":11.2,"y":18.757},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM13-LM12","startPos":{"instanceName":"LM13","pos":{"x":11.5,"y":18.757}},"endPos":{"instanceName":"LM12","pos":{"x":10.6,"y":18.757}},"controlPos1":{"x":11.2,"y":18.757},"controlPos2":{"x":10.9,"y":18.757},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM13-LM14","startPos":{"instanceName":"LM13","pos":{"x":11.5,"y":18.757}},"endPos":{"instanceName":"LM14","pos":{"x":12.4,"y":18.757}},"controlPos1":{"x":11.8,"y":18.757},"controlPos2":{"x":12.1,"y":18.757},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM14-LM13","startPos":{"instanceName":"LM14","pos":{"x":12.4,"y":18.757}},"endPos":{"instanceName":"LM13","pos":{"x":11.5,"y":18.757}},"controlPos1":{"x":12.1,"y":18.757},"controlPos2":{"x":11.8,"y":18.757},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM14-LM15","startPos":{"instanceName":"LM14","pos":{"x":12.4,"y":18.757}},"endPos":{"instanceName":"LM15","pos":{"x":13.3,"y":18.757}},"controlPos1":{"x":12.7,"y":18.757},"controlPos2":{"x":13,"y":18.757},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM15-LM14","startPos":{"instanceName":"LM15","pos":{"x":13.3,"y":18.757}},"endPos":{"instanceName":"LM14","pos":{"x":12.4,"y":18.757}},"controlPos1":{"x":13,"y":18.757},"controlPos2":{"x":12.7,"y":18.757},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM3-LM4","startPos":{"instanceName":"LM3","pos":{"x":6.469,"y":8.839}},"endPos":{"instanceName":"LM4","pos":{"x":7.059,"y":10.522}},"controlPos1":{"x":6.666,"y":9.4},"controlPos2":{"x":6.862,"y":9.961},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM4-LM3","startPos":{"instanceName":"LM4","pos":{"x":7.059,"y":10.522}},"endPos":{"instanceName":"LM3","pos":{"x":6.469,"y":8.839}},"controlPos1":{"x":6.862,"y":9.961},"controlPos2":{"x":6.666,"y":9.4},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM4-LM5","startPos":{"instanceName":"LM4","pos":{"x":7.059,"y":10.522}},"endPos":{"instanceName":"LM5","pos":{"x":7.059,"y":13}},"controlPos1":{"x":7.059,"y":11.348},"controlPos2":{"x":7.059,"y":12.174},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM5-LM4","startPos":{"instanceName":"LM5","pos":{"x":7.059,"y":13}},"endPos":{"instanceName":"LM4","pos":{"x":7.059,"y":10.522}},"controlPos1":{"x":7.059,"y":12.174},"controlPos2":{"x":7.059,"y":11.348},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM5-LM6","startPos":{"instanceName":"LM5","pos":{"x":7.059,"y":13}},"endPos":{"instanceName":"LM6","pos":{"x":7.071,"y":14.499}},"controlPos1":{"x":7.063,"y":13.5},"controlPos2":{"x":7.067,"y":14},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM6-LM5","startPos":{"instanceName":"LM6","pos":{"x":7.071,"y":14.499}},"endPos":{"instanceName":"LM5","pos":{"x":7.059,"y":13}},"controlPos1":{"x":7.067,"y":14},"controlPos2":{"x":7.063,"y":13.5},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM6-LM7","startPos":{"instanceName":"LM6","pos":{"x":7.071,"y":14.499}},"endPos":{"instanceName":"LM7","pos":{"x":7.059,"y":15.925}},"controlPos1":{"x":7.067,"y":14.975},"controlPos2":{"x":7.063,"y":15.45},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM7-LM6","startPos":{"instanceName":"LM7","pos":{"x":7.059,"y":15.925}},"endPos":{"instanceName":"LM6","pos":{"x":7.071,"y":14.499}},"controlPos1":{"x":7.063,"y":15.45},"controlPos2":{"x":7.067,"y":14.975},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM7-LM8","startPos":{"instanceName":"LM7","pos":{"x":7.059,"y":15.925}},"endPos":{"instanceName":"LM8","pos":{"x":7.059,"y":16.753}},"controlPos1":{"x":7.059,"y":16.201},"controlPos2":{"x":7.059,"y":16.477},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM8-LM7","startPos":{"instanceName":"LM8","pos":{"x":7.059,"y":16.753}},"endPos":{"instanceName":"LM7","pos":{"x":7.059,"y":15.925}},"controlPos1":{"x":7.059,"y":16.477},"controlPos2":{"x":7.059,"y":16.201},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM8-LM9","startPos":{"instanceName":"LM8","pos":{"x":7.059,"y":16.753}},"endPos":{"instanceName":"LM9","pos":{"x":7.059,"y":18.757}},"controlPos1":{"x":7.059,"y":17.421},"controlPos2":{"x":7.059,"y":18.089},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM9-LM8","startPos":{"instanceName":"LM9","pos":{"x":7.059,"y":18.757}},"endPos":{"instanceName":"LM8","pos":{"x":7.059,"y":16.753}},"controlPos1":{"x":7.059,"y":18.089},"controlPos2":{"x":7.059,"y":17.421},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM9-LM22","startPos":{"instanceName":"LM9","pos":{"x":7.059,"y":18.757}},"endPos":{"instanceName":"LM22","pos":{"x":7.064,"y":20.588}},"controlPos1":{"x":7.061,"y":19.367},"controlPos2":{"x":7.062,"y":19.978},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM22-LM9","startPos":{"instanceName":"LM22","pos":{"x":7.064,"y":20.588}},"endPos":{"instanceName":"LM9","pos":{"x":7.059,"y":18.757}},"controlPos1":{"x":7.062,"y":19.978},"controlPos2":{"x":7.061,"y":19.367},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM22-LM25","startPos":{"instanceName":"LM22","pos":{"x":7.064,"y":20.588}},"endPos":{"instanceName":"LM25","pos":{"x":7.072,"y":22.441}},"controlPos1":{"x":7.067,"y":21.206},"controlPos2":{"x":7.07,"y":21.823},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM25-LM22","startPos":{"instanceName":"LM25","pos":{"x":7.072,"y":22.441}},"endPos":{"instanceName":"LM22","pos":{"x":7.064,"y":20.588}},"controlPos1":{"x":7.07,"y":21.823},"controlPos2":{"x":7.067,"y":21.206},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM25-LM32","startPos":{"instanceName":"LM25","pos":{"x":7.072,"y":22.441}},"endPos":{"instanceName":"LM32","pos":{"x":7.079,"y":24.263}},"controlPos1":{"x":7.074,"y":23.048},"controlPos2":{"x":7.077,"y":23.655},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM32-LM25","startPos":{"instanceName":"LM32","pos":{"x":7.079,"y":24.263}},"endPos":{"instanceName":"LM25","pos":{"x":7.072,"y":22.441}},"controlPos1":{"x":7.077,"y":23.655},"controlPos2":{"x":7.074,"y":23.048},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM32-LM37","startPos":{"instanceName":"LM32","pos":{"x":7.079,"y":24.263}},"endPos":{"instanceName":"LM37","pos":{"x":7.071,"y":26.619}},"controlPos1":{"x":7.076,"y":24.902},"controlPos2":{"x":7.074,"y":25.541},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM37-LM32","startPos":{"instanceName":"LM37","pos":{"x":7.071,"y":26.619}},"endPos":{"instanceName":"LM32","pos":{"x":7.079,"y":24.263}},"controlPos1":{"x":7.074,"y":25.541},"controlPos2":{"x":7.076,"y":24.902},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM1-LM2","startPos":{"instanceName":"LM1","pos":{"x":6.469,"y":4.802}},"endPos":{"instanceName":"LM2","pos":{"x":6.469,"y":6.774}},"controlPos1":{"x":6.469,"y":5.459},"controlPos2":{"x":6.469,"y":6.117},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM2-LM1","startPos":{"instanceName":"LM2","pos":{"x":6.469,"y":6.774}},"endPos":{"instanceName":"LM1","pos":{"x":6.469,"y":4.802}},"controlPos1":{"x":6.469,"y":6.117},"controlPos2":{"x":6.469,"y":5.459},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM2-LM3","startPos":{"instanceName":"LM2","pos":{"x":6.469,"y":6.774}},"endPos":{"instanceName":"LM3","pos":{"x":6.469,"y":8.839}},"controlPos1":{"x":6.469,"y":7.462},"controlPos2":{"x":6.469,"y":8.151},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM3-LM2","startPos":{"instanceName":"LM3","pos":{"x":6.469,"y":8.839}},"endPos":{"instanceName":"LM2","pos":{"x":6.469,"y":6.774}},"controlPos1":{"x":6.469,"y":8.151},"controlPos2":{"x":6.469,"y":7.462},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM44-LM45","startPos":{"instanceName":"LM44","pos":{"x":19.85,"y":24.265}},"endPos":{"instanceName":"LM45","pos":{"x":18.95,"y":24.265}},"controlPos1":{"x":19.55,"y":24.265},"controlPos2":{"x":19.25,"y":24.265},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM45-LM44","startPos":{"instanceName":"LM45","pos":{"x":18.95,"y":24.265}},"endPos":{"instanceName":"LM44","pos":{"x":19.85,"y":24.265}},"controlPos1":{"x":19.25,"y":24.265},"controlPos2":{"x":19.55,"y":24.265},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM45-LM46","startPos":{"instanceName":"LM45","pos":{"x":18.95,"y":24.265}},"endPos":{"instanceName":"LM46","pos":{"x":18.05,"y":24.265}},"controlPos1":{"x":18.65,"y":24.265},"controlPos2":{"x":18.35,"y":24.265},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM46-LM45","startPos":{"instanceName":"LM46","pos":{"x":18.05,"y":24.265}},"endPos":{"instanceName":"LM45","pos":{"x":18.95,"y":24.265}},"controlPos1":{"x":18.35,"y":24.265},"controlPos2":{"x":18.65,"y":24.265},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM46-LM47","startPos":{"instanceName":"LM46","pos":{"x":18.05,"y":24.265}},"endPos":{"instanceName":"LM47","pos":{"x":17.15,"y":24.26}},"controlPos1":{"x":17.75,"y":24.263},"controlPos2":{"x":17.45,"y":24.262},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM47-LM46","startPos":{"instanceName":"LM47","pos":{"x":17.15,"y":24.26}},"endPos":{"instanceName":"LM46","pos":{"x":18.05,"y":24.265}},"controlPos1":{"x":17.45,"y":24.262},"controlPos2":{"x":17.75,"y":24.263},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM47-LM48","startPos":{"instanceName":"LM47","pos":{"x":17.15,"y":24.26}},"endPos":{"instanceName":"LM48","pos":{"x":16.25,"y":24.26}},"controlPos1":{"x":16.85,"y":24.26},"controlPos2":{"x":16.55,"y":24.26},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM48-LM47","startPos":{"instanceName":"LM48","pos":{"x":16.25,"y":24.26}},"endPos":{"instanceName":"LM47","pos":{"x":17.15,"y":24.26}},"controlPos1":{"x":16.55,"y":24.26},"controlPos2":{"x":16.85,"y":24.26},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM48-LM49","startPos":{"instanceName":"LM48","pos":{"x":16.25,"y":24.26}},"endPos":{"instanceName":"LM49","pos":{"x":15.35,"y":24.255}},"controlPos1":{"x":15.95,"y":24.258},"controlPos2":{"x":15.65,"y":24.257},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM49-LM48","startPos":{"instanceName":"LM49","pos":{"x":15.35,"y":24.255}},"endPos":{"instanceName":"LM48","pos":{"x":16.25,"y":24.26}},"controlPos1":{"x":15.65,"y":24.257},"controlPos2":{"x":15.95,"y":24.258},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM73-LM44","startPos":{"instanceName":"LM73","pos":{"x":21.77,"y":24.265}},"endPos":{"instanceName":"LM44","pos":{"x":19.85,"y":24.265}},"controlPos1":{"x":21.017,"y":24.265},"controlPos2":{"x":20.433,"y":24.265},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM44-LM73","startPos":{"instanceName":"LM44","pos":{"x":19.85,"y":24.265}},"endPos":{"instanceName":"LM73","pos":{"x":21.77,"y":24.265}},"controlPos1":{"x":20.433,"y":24.265},"controlPos2":{"x":21.017,"y":24.265},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM72-LM53","startPos":{"instanceName":"LM72","pos":{"x":21.77,"y":22.421}},"endPos":{"instanceName":"LM53","pos":{"x":19.845,"y":22.421}},"controlPos1":{"x":21.128,"y":22.421},"controlPos2":{"x":20.487,"y":22.421},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM53-LM72","startPos":{"instanceName":"LM53","pos":{"x":19.845,"y":22.421}},"endPos":{"instanceName":"LM72","pos":{"x":21.77,"y":22.421}},"controlPos1":{"x":20.487,"y":22.421},"controlPos2":{"x":21.128,"y":22.421},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM70-LM59","startPos":{"instanceName":"LM70","pos":{"x":21.77,"y":20.571}},"endPos":{"instanceName":"LM59","pos":{"x":19.851,"y":20.571}},"controlPos1":{"x":21.13,"y":20.571},"controlPos2":{"x":20.491,"y":20.571},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM59-LM70","startPos":{"instanceName":"LM59","pos":{"x":19.851,"y":20.571}},"endPos":{"instanceName":"LM70","pos":{"x":21.77,"y":20.571}},"controlPos1":{"x":20.491,"y":20.571},"controlPos2":{"x":21.13,"y":20.571},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM71-LM65","startPos":{"instanceName":"LM71","pos":{"x":21.77,"y":18.73}},"endPos":{"instanceName":"LM65","pos":{"x":19.849,"y":18.73}},"controlPos1":{"x":21.13,"y":18.73},"controlPos2":{"x":20.49,"y":18.73},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM65-LM71","startPos":{"instanceName":"LM65","pos":{"x":19.849,"y":18.73}},"endPos":{"instanceName":"LM71","pos":{"x":21.77,"y":18.73}},"controlPos1":{"x":20.49,"y":18.73},"controlPos2":{"x":21.13,"y":18.73},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM73-LM76","startPos":{"instanceName":"LM73","pos":{"x":21.77,"y":24.265}},"endPos":{"instanceName":"LM76","pos":{"x":21.77,"y":26.759}},"controlPos1":{"x":21.77,"y":25.096},"controlPos2":{"x":21.77,"y":25.928},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM76-LM73","startPos":{"instanceName":"LM76","pos":{"x":21.77,"y":26.759}},"endPos":{"instanceName":"LM73","pos":{"x":21.77,"y":24.265}},"controlPos1":{"x":21.77,"y":25.928},"controlPos2":{"x":21.77,"y":25.096},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM76-LM77","startPos":{"instanceName":"LM76","pos":{"x":21.77,"y":26.759}},"endPos":{"instanceName":"LM77","pos":{"x":21.77,"y":28.056}},"controlPos1":{"x":21.77,"y":27.191},"controlPos2":{"x":21.77,"y":27.624},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM77-LM76","startPos":{"instanceName":"LM77","pos":{"x":21.77,"y":28.056}},"endPos":{"instanceName":"LM76","pos":{"x":21.77,"y":26.759}},"controlPos1":{"x":21.77,"y":27.624},"controlPos2":{"x":21.77,"y":27.191},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM77-LM78","startPos":{"instanceName":"LM77","pos":{"x":21.77,"y":28.056}},"endPos":{"instanceName":"LM78","pos":{"x":18.949,"y":28.056}},"controlPos1":{"x":21.017,"y":28.056},"controlPos2":{"x":20.433,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM78-LM77","startPos":{"instanceName":"LM78","pos":{"x":18.949,"y":28.056}},"endPos":{"instanceName":"LM77","pos":{"x":21.77,"y":28.056}},"controlPos1":{"x":20.433,"y":28.056},"controlPos2":{"x":21.017,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM76-PP75","startPos":{"instanceName":"LM76","pos":{"x":21.77,"y":26.759}},"endPos":{"instanceName":"PP75","pos":{"x":19.563,"y":26.759}},"controlPos1":{"x":21.034,"y":26.759},"controlPos2":{"x":20.299,"y":26.759},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"PP75-LM76","startPos":{"instanceName":"PP75","pos":{"x":19.563,"y":26.759}},"endPos":{"instanceName":"LM76","pos":{"x":21.77,"y":26.759}},"controlPos1":{"x":20.299,"y":26.759},"controlPos2":{"x":21.034,"y":26.759},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"PP75-CP74","startPos":{"instanceName":"PP75","pos":{"x":19.563,"y":26.759}},"endPos":{"instanceName":"CP74","pos":{"x":18.651,"y":26.759}},"controlPos1":{"x":19.259,"y":26.759},"controlPos2":{"x":18.955,"y":26.759},"property":[{"key":"direction","type":"int","value":"MQ==","int32Value":1},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"CP74-PP75","startPos":{"instanceName":"CP74","pos":{"x":18.651,"y":26.759}},"endPos":{"instanceName":"PP75","pos":{"x":19.563,"y":26.759}},"controlPos1":{"x":18.955,"y":26.759},"controlPos2":{"x":19.259,"y":26.759},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM43-LM81","startPos":{"instanceName":"LM43","pos":{"x":13.312,"y":26.619}},"endPos":{"instanceName":"LM81","pos":{"x":13.312,"y":28.056}},"controlPos1":{"x":13.312,"y":27.098},"controlPos2":{"x":13.312,"y":27.577},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM81-LM43","startPos":{"instanceName":"LM81","pos":{"x":13.312,"y":28.056}},"endPos":{"instanceName":"LM43","pos":{"x":13.312,"y":26.619}},"controlPos1":{"x":13.312,"y":27.577},"controlPos2":{"x":13.312,"y":27.098},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM81-LM80","startPos":{"instanceName":"LM81","pos":{"x":13.312,"y":28.056}},"endPos":{"instanceName":"LM80","pos":{"x":15.349,"y":28.056}},"controlPos1":{"x":13.991,"y":28.056},"controlPos2":{"x":14.67,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM80-LM81","startPos":{"instanceName":"LM80","pos":{"x":15.349,"y":28.056}},"endPos":{"instanceName":"LM81","pos":{"x":13.312,"y":28.056}},"controlPos1":{"x":14.67,"y":28.056},"controlPos2":{"x":13.991,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM82-LM83","startPos":{"instanceName":"LM82","pos":{"x":9.712,"y":28.056}},"endPos":{"instanceName":"LM83","pos":{"x":7.071,"y":28.056}},"controlPos1":{"x":8.832,"y":28.056},"controlPos2":{"x":7.951,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM83-LM82","startPos":{"instanceName":"LM83","pos":{"x":7.071,"y":28.056}},"endPos":{"instanceName":"LM82","pos":{"x":9.712,"y":28.056}},"controlPos1":{"x":7.951,"y":28.056},"controlPos2":{"x":8.832,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM83-LM37","startPos":{"instanceName":"LM83","pos":{"x":7.071,"y":28.056}},"endPos":{"instanceName":"LM37","pos":{"x":7.071,"y":26.619}},"controlPos1":{"x":7.071,"y":27.577},"controlPos2":{"x":7.071,"y":27.098},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM37-LM83","startPos":{"instanceName":"LM37","pos":{"x":7.071,"y":26.619}},"endPos":{"instanceName":"LM83","pos":{"x":7.071,"y":28.056}},"controlPos1":{"x":7.071,"y":27.098},"controlPos2":{"x":7.071,"y":27.577},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM81-LM84","startPos":{"instanceName":"LM81","pos":{"x":13.312,"y":28.056}},"endPos":{"instanceName":"LM84","pos":{"x":11.512,"y":28.056}},"controlPos1":{"x":12.712,"y":28.056},"controlPos2":{"x":12.112,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM84-LM81","startPos":{"instanceName":"LM84","pos":{"x":11.512,"y":28.056}},"endPos":{"instanceName":"LM81","pos":{"x":13.312,"y":28.056}},"controlPos1":{"x":12.112,"y":28.056},"controlPos2":{"x":12.712,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM84-LM82","startPos":{"instanceName":"LM84","pos":{"x":11.512,"y":28.056}},"endPos":{"instanceName":"LM82","pos":{"x":9.712,"y":28.056}},"controlPos1":{"x":10.912,"y":28.056},"controlPos2":{"x":10.312,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM82-LM84","startPos":{"instanceName":"LM82","pos":{"x":9.712,"y":28.056}},"endPos":{"instanceName":"LM84","pos":{"x":11.512,"y":28.056}},"controlPos1":{"x":10.312,"y":28.056},"controlPos2":{"x":10.912,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM80-LM79","startPos":{"instanceName":"LM80","pos":{"x":15.349,"y":28.056}},"endPos":{"instanceName":"LM79","pos":{"x":17.149,"y":28.056}},"controlPos1":{"x":15.949,"y":28.056},"controlPos2":{"x":16.549,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM79-LM80","startPos":{"instanceName":"LM79","pos":{"x":17.149,"y":28.056}},"endPos":{"instanceName":"LM80","pos":{"x":15.349,"y":28.056}},"controlPos1":{"x":16.549,"y":28.056},"controlPos2":{"x":15.949,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM79-LM78","startPos":{"instanceName":"LM79","pos":{"x":17.149,"y":28.056}},"endPos":{"instanceName":"LM78","pos":{"x":18.949,"y":28.056}},"controlPos1":{"x":17.749,"y":28.056},"controlPos2":{"x":18.349,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM78-LM79","startPos":{"instanceName":"LM78","pos":{"x":18.949,"y":28.056}},"endPos":{"instanceName":"LM79","pos":{"x":17.149,"y":28.056}},"controlPos1":{"x":18.349,"y":28.056},"controlPos2":{"x":17.749,"y":28.056},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM73-LM72","startPos":{"instanceName":"LM73","pos":{"x":21.77,"y":24.265}},"endPos":{"instanceName":"LM72","pos":{"x":21.77,"y":22.421}},"controlPos1":{"x":21.77,"y":23.65},"controlPos2":{"x":21.77,"y":23.036},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM72-LM73","startPos":{"instanceName":"LM72","pos":{"x":21.77,"y":22.421}},"endPos":{"instanceName":"LM73","pos":{"x":21.77,"y":24.265}},"controlPos1":{"x":21.77,"y":23.036},"controlPos2":{"x":21.77,"y":23.65},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM72-LM70","startPos":{"instanceName":"LM72","pos":{"x":21.77,"y":22.421}},"endPos":{"instanceName":"LM70","pos":{"x":21.77,"y":20.571}},"controlPos1":{"x":21.77,"y":21.804},"controlPos2":{"x":21.77,"y":21.188},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM70-LM72","startPos":{"instanceName":"LM70","pos":{"x":21.77,"y":20.571}},"endPos":{"instanceName":"LM72","pos":{"x":21.77,"y":22.421}},"controlPos1":{"x":21.77,"y":21.188},"controlPos2":{"x":21.77,"y":21.804},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM70-LM71","startPos":{"instanceName":"LM70","pos":{"x":21.77,"y":20.571}},"endPos":{"instanceName":"LM71","pos":{"x":21.77,"y":18.73}},"controlPos1":{"x":21.77,"y":19.957},"controlPos2":{"x":21.77,"y":19.344},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM71-LM70","startPos":{"instanceName":"LM71","pos":{"x":21.77,"y":18.73}},"endPos":{"instanceName":"LM70","pos":{"x":21.77,"y":20.571}},"controlPos1":{"x":21.77,"y":19.344},"controlPos2":{"x":21.77,"y":19.957},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM85-LM86","startPos":{"instanceName":"LM85","pos":{"x":22.902,"y":4.679}},"endPos":{"instanceName":"LM86","pos":{"x":22.902,"y":6.508}},"controlPos1":{"x":22.902,"y":5.373},"controlPos2":{"x":22.902,"y":5.94},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM86-LM85","startPos":{"instanceName":"LM86","pos":{"x":22.902,"y":6.508}},"endPos":{"instanceName":"LM85","pos":{"x":22.902,"y":4.679}},"controlPos1":{"x":22.902,"y":5.94},"controlPos2":{"x":22.902,"y":5.373},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM86-LM87","startPos":{"instanceName":"LM86","pos":{"x":22.902,"y":6.508}},"endPos":{"instanceName":"LM87","pos":{"x":22.902,"y":8.127}},"controlPos1":{"x":22.902,"y":7.047},"controlPos2":{"x":22.902,"y":7.587},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM87-LM86","startPos":{"instanceName":"LM87","pos":{"x":22.902,"y":8.127}},"endPos":{"instanceName":"LM86","pos":{"x":22.902,"y":6.508}},"controlPos1":{"x":22.902,"y":7.587},"controlPos2":{"x":22.902,"y":7.047},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM87-LM88","startPos":{"instanceName":"LM87","pos":{"x":22.902,"y":8.127}},"endPos":{"instanceName":"LM88","pos":{"x":22.902,"y":9.808}},"controlPos1":{"x":22.902,"y":8.687},"controlPos2":{"x":22.902,"y":9.247},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM88-LM87","startPos":{"instanceName":"LM88","pos":{"x":22.902,"y":9.808}},"endPos":{"instanceName":"LM87","pos":{"x":22.902,"y":8.127}},"controlPos1":{"x":22.902,"y":9.247},"controlPos2":{"x":22.902,"y":8.687},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM88-LM89","startPos":{"instanceName":"LM88","pos":{"x":22.902,"y":9.808}},"endPos":{"instanceName":"LM89","pos":{"x":22.902,"y":11.691}},"controlPos1":{"x":22.902,"y":10.436},"controlPos2":{"x":22.902,"y":11.063},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM89-LM88","startPos":{"instanceName":"LM89","pos":{"x":22.902,"y":11.691}},"endPos":{"instanceName":"LM88","pos":{"x":22.902,"y":9.808}},"controlPos1":{"x":22.902,"y":11.063},"controlPos2":{"x":22.902,"y":10.436},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM89-LM90","startPos":{"instanceName":"LM89","pos":{"x":22.902,"y":11.691}},"endPos":{"instanceName":"LM90","pos":{"x":22.902,"y":13.937}},"controlPos1":{"x":22.902,"y":12.264},"controlPos2":{"x":22.902,"y":12.838},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM90-LM89","startPos":{"instanceName":"LM90","pos":{"x":22.902,"y":13.937}},"endPos":{"instanceName":"LM89","pos":{"x":22.902,"y":11.691}},"controlPos1":{"x":22.902,"y":12.838},"controlPos2":{"x":22.902,"y":12.264},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM90-LM91","startPos":{"instanceName":"LM90","pos":{"x":22.902,"y":13.937}},"endPos":{"instanceName":"LM91","pos":{"x":22.902,"y":15.164}},"controlPos1":{"x":22.902,"y":13.995},"controlPos2":{"x":22.902,"y":14.58},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM91-LM90","startPos":{"instanceName":"LM91","pos":{"x":22.902,"y":15.164}},"endPos":{"instanceName":"LM90","pos":{"x":22.902,"y":13.937}},"controlPos1":{"x":22.902,"y":14.58},"controlPos2":{"x":22.902,"y":13.995},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM91-LM92","startPos":{"instanceName":"LM91","pos":{"x":22.902,"y":15.164}},"endPos":{"instanceName":"LM92","pos":{"x":22.902,"y":16.364}},"controlPos1":{"x":22.902,"y":15.564},"controlPos2":{"x":22.902,"y":15.964},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM92-LM91","startPos":{"instanceName":"LM92","pos":{"x":22.902,"y":16.364}},"endPos":{"instanceName":"LM91","pos":{"x":22.902,"y":15.164}},"controlPos1":{"x":22.902,"y":15.964},"controlPos2":{"x":22.902,"y":15.564},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM92-LM93","startPos":{"instanceName":"LM92","pos":{"x":22.902,"y":16.364}},"endPos":{"instanceName":"LM93","pos":{"x":22.902,"y":18.73}},"controlPos1":{"x":22.902,"y":17.153},"controlPos2":{"x":22.902,"y":17.941},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM93-LM92","startPos":{"instanceName":"LM93","pos":{"x":22.902,"y":18.73}},"endPos":{"instanceName":"LM92","pos":{"x":22.902,"y":16.364}},"controlPos1":{"x":22.902,"y":17.941},"controlPos2":{"x":22.902,"y":17.153},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM93-LM71","startPos":{"instanceName":"LM93","pos":{"x":22.902,"y":18.73}},"endPos":{"instanceName":"LM71","pos":{"x":21.77,"y":18.73}},"controlPos1":{"x":22.525,"y":18.73},"controlPos2":{"x":22.147,"y":18.73},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]},{"className":"DegenerateBezier","instanceName":"LM71-LM93","startPos":{"instanceName":"LM71","pos":{"x":21.77,"y":18.73}},"endPos":{"instanceName":"LM93","pos":{"x":22.902,"y":18.73}},"controlPos1":{"x":22.147,"y":18.73},"controlPos2":{"x":22.525,"y":18.73},"property":[{"key":"direction","type":"int","value":"MA==","int32Value":0},{"key":"movestyle","type":"int","value":"MA==","int32Value":0}]}]
}
\ No newline at end of file
fileFormatVersion: 2
guid: 2b6b1e3fbd74e734f83f4c1db822d90f
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
......@@ -18,12 +18,11 @@ public class TouristModeController : MonoBehaviour
public GameObject FreeCamera;
[Tooltip("固定摄像头中动画的名字")]
public string animName;
[Tooltip("模式选择UI")]
public GameObject ModeSelectionUI;
[Tooltip("导览模式UI")]
public GameObject VisitUI;
[Tooltip("机器巡检模式UI")]
public GameObject MachineInspectionUI;
[Tooltip("人物模式UI")]
public GameObject CharacterModeUI;
[Tooltip("人物模式UI")]
public GameObject ReturnUI;
[Tooltip("复位按钮")]
public Button ResetBtn;
[Tooltip("播/放按钮")]
......@@ -78,6 +77,11 @@ public class TouristModeController : MonoBehaviour
// 将Animator的播放位置转换为Slider的数值
float value = planeAnimator.GetCurrentAnimatorStateInfo(0).normalizedTime;
slider.value = value;
// 检查动画是否播放完毕
if (value >= 1.0f)
{
Restart();
}
}
}
......@@ -89,8 +93,8 @@ public class TouristModeController : MonoBehaviour
ExitObserve();
RobotInspection.SetActive(true);
IsArtificial = true;
ModeSelectionUI.SetActive(false);
MachineInspectionUI.SetActive(true);
CharacterModeUI.SetActive(false);
ReturnUI.SetActive(true);
}
......@@ -101,7 +105,10 @@ public class TouristModeController : MonoBehaviour
public void SetEncircle()
{
ExitObserve();
Player.AutoRotate = true;
CharacterModeUI.SetActive(false);
ReturnUI.SetActive(true);
}
......@@ -112,11 +119,11 @@ public class TouristModeController : MonoBehaviour
{
ExitObserve();
FixCamera.SetActive(true);
VisitUI.SetActive(true);
ModeSelectionUI.SetActive(false);
MachineInspectionUI.SetActive(false);
Player.BackToInitPosition();
Player.IsPause = true;
PauseOrResumeAnimator();
CharacterModeUI.SetActive(false);
ReturnUI.SetActive(true);
}
/// <summary>
......@@ -203,14 +210,13 @@ public class TouristModeController : MonoBehaviour
PauseOrResumeAnimator();
//FreeCamera.SetActive(false);
FixCamera.SetActive(false);
VisitUI.SetActive(false);
ModeSelectionUI.SetActive(true);
MachineInspectionUI.SetActive(false);
Player.BackToInitPosition();
Player.IsPause = false;
Player.AutoRotate = false;
RobotInspection.SetActive(false);
IsArtificial = false;
CharacterModeUI.SetActive(true);
ReturnUI.SetActive(false);
}
/// <summary>
......@@ -237,6 +243,7 @@ public class TouristModeController : MonoBehaviour
slider.value = 0f;
planeAnimator.Play(animName, 0, 0); // 将Animator的播放位置设置为0
planeAnimator.speed = speeds; // 确保动画按照当前设置的速度播放
}
/// <summary>
......
......@@ -103,7 +103,7 @@ MonoBehaviour:
m_PrefilterSSAOSampleCountHigh: 1
m_PrefilterDBufferMRT1: 1
m_PrefilterDBufferMRT2: 1
m_PrefilterDBufferMRT3: 1
m_PrefilterDBufferMRT3: 0
m_PrefilterSoftShadowsQualityLow: 1
m_PrefilterSoftShadowsQualityMedium: 1
m_PrefilterSoftShadowsQualityHigh: 1
......
......@@ -103,7 +103,7 @@ MonoBehaviour:
m_PrefilterSSAOSampleCountHigh: 0
m_PrefilterDBufferMRT1: 1
m_PrefilterDBufferMRT2: 1
m_PrefilterDBufferMRT3: 1
m_PrefilterDBufferMRT3: 0
m_PrefilterSoftShadowsQualityLow: 1
m_PrefilterSoftShadowsQualityMedium: 1
m_PrefilterSoftShadowsQualityHigh: 1
......
This source diff could not be displayed because it is too large. You can view the blob instead.
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!29 &1
OcclusionCullingSettings:
m_ObjectHideFlags: 0
serializedVersion: 2
m_OcclusionBakeSettings:
smallestOccluder: 5
smallestHole: 0.25
backfaceThreshold: 100
m_SceneGUID: 00000000000000000000000000000000
m_OcclusionCullingData: {fileID: 0}
--- !u!104 &2
RenderSettings:
m_ObjectHideFlags: 0
serializedVersion: 9
m_Fog: 0
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
m_FogMode: 3
m_FogDensity: 0.01
m_LinearFogStart: 0
m_LinearFogEnd: 300
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
m_AmbientIntensity: 1
m_AmbientMode: 0
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
m_HaloStrength: 0.5
m_FlareStrength: 1
m_FlareFadeSpeed: 3
m_HaloTexture: {fileID: 0}
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
m_DefaultReflectionMode: 0
m_DefaultReflectionResolution: 128
m_ReflectionBounces: 1
m_ReflectionIntensity: 1
m_CustomReflection: {fileID: 0}
m_Sun: {fileID: 0}
m_IndirectSpecularColor: {r: 0.18028378, g: 0.22571412, b: 0.30692285, a: 1}
m_UseRadianceAmbientProbe: 0
--- !u!157 &3
LightmapSettings:
m_ObjectHideFlags: 0
serializedVersion: 12
m_GIWorkflowMode: 1
m_GISettings:
serializedVersion: 2
m_BounceScale: 1
m_IndirectOutputScale: 1
m_AlbedoBoost: 1
m_EnvironmentLightingMode: 0
m_EnableBakedLightmaps: 1
m_EnableRealtimeLightmaps: 0
m_LightmapEditorSettings:
serializedVersion: 12
m_Resolution: 2
m_BakeResolution: 40
m_AtlasSize: 1024
m_AO: 0
m_AOMaxDistance: 1
m_CompAOExponent: 1
m_CompAOExponentDirect: 0
m_ExtractAmbientOcclusion: 0
m_Padding: 2
m_LightmapParameters: {fileID: 0}
m_LightmapsBakeMode: 1
m_TextureCompression: 1
m_FinalGather: 0
m_FinalGatherFiltering: 1
m_FinalGatherRayCount: 256
m_ReflectionCompression: 2
m_MixedBakeMode: 2
m_BakeBackend: 1
m_PVRSampling: 1
m_PVRDirectSampleCount: 32
m_PVRSampleCount: 512
m_PVRBounces: 2
m_PVREnvironmentSampleCount: 256
m_PVREnvironmentReferencePointCount: 2048
m_PVRFilteringMode: 1
m_PVRDenoiserTypeDirect: 1
m_PVRDenoiserTypeIndirect: 1
m_PVRDenoiserTypeAO: 1
m_PVRFilterTypeDirect: 0
m_PVRFilterTypeIndirect: 0
m_PVRFilterTypeAO: 0
m_PVREnvironmentMIS: 1
m_PVRCulling: 1
m_PVRFilteringGaussRadiusDirect: 1
m_PVRFilteringGaussRadiusIndirect: 5
m_PVRFilteringGaussRadiusAO: 2
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
m_PVRFilteringAtrousPositionSigmaIndirect: 2
m_PVRFilteringAtrousPositionSigmaAO: 1
m_ExportTrainingData: 0
m_TrainingDataDestination: TrainingData
m_LightProbeSampleCountMultiplier: 4
m_LightingDataAsset: {fileID: 0}
m_LightingSettings: {fileID: 0}
--- !u!196 &4
NavMeshSettings:
serializedVersion: 2
m_ObjectHideFlags: 0
m_BuildSettings:
serializedVersion: 3
agentTypeID: 0
agentRadius: 0.5
agentHeight: 2
agentSlope: 45
agentClimb: 0.4
ledgeDropHeight: 0
maxJumpAcrossDistance: 0
minRegionArea: 2
manualCellSize: 0
cellSize: 0.16666667
manualTileSize: 0
tileSize: 256
buildHeightMesh: 0
maxJobWorkers: 0
preserveTilesOutsideBounds: 0
debug:
m_Flags: 0
m_NavMeshData: {fileID: 0}
--- !u!114 &127708635 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 4216666462972747853, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1001 &290266710
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 4216666462354603726, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462475421791, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462475421791, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462475421791, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462475421791, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462475421791, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462475421791, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462793344476, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462793344476, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462793344476, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462793344476, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462793344476, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462793344476, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462972747852, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462972747852, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462972747852, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462972747852, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462972747852, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666462972747852, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666463072165584, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 434
objectReference: {fileID: 0}
- target: {fileID: 4216666463088969116, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666463370803647, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.x
value: -57
objectReference: {fileID: 0}
- target: {fileID: 4216666463370803647, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 96
objectReference: {fileID: 0}
- target: {fileID: 4216666463578453687, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464367198221, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 434
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_Pivot.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_Pivot.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMax.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMin.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220571, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4216666464480220575, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
propertyPath: m_Name
value: Canvas
objectReference: {fileID: 0}
m_RemovedComponents:
- {fileID: 4216666464480220568, guid: 65f7dfec384977d42a8296bdbde6b01c, type: 3}
m_RemovedGameObjects:
- {fileID: 4216666462354603726, guid: 65f7dfec384977d42a8296bdbde6b01c, type: 3}
- {fileID: 4216666464437739081, guid: 65f7dfec384977d42a8296bdbde6b01c, type: 3}
- {fileID: 4216666463088969116, guid: 65f7dfec384977d42a8296bdbde6b01c, type: 3}
- {fileID: 4216666463578453687, guid: 65f7dfec384977d42a8296bdbde6b01c, type: 3}
m_AddedGameObjects: []
m_AddedComponents:
- targetCorrespondingSourceObject: {fileID: 4216666464480220575, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
insertIndex: -1
addedObject: {fileID: 1087785901}
m_SourcePrefab: {fileID: 100100000, guid: 65f7dfec384977d42a8296bdbde6b01c, type: 3}
--- !u!114 &324473978 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 4216666462475421788, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &354706559
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 354706562}
- component: {fileID: 354706561}
- component: {fileID: 354706560}
m_Layer: 0
m_Name: EventSystem
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &354706560
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 354706559}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
m_Name:
m_EditorClassIdentifier:
m_SendPointerHoverToParent: 1
m_HorizontalAxis: Horizontal
m_VerticalAxis: Vertical
m_SubmitButton: Submit
m_CancelButton: Cancel
m_InputActionsPerSecond: 10
m_RepeatDelay: 0.5
m_ForceModuleActive: 0
--- !u!114 &354706561
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 354706559}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
m_Name:
m_EditorClassIdentifier:
m_FirstSelected: {fileID: 0}
m_sendNavigationEvents: 1
m_DragThreshold: 10
--- !u!4 &354706562
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 354706559}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &965758306
GameObject:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 965758308}
- component: {fileID: 965758307}
m_Layer: 0
m_Name: '!ftraceLightmaps'
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &965758307
MonoBehaviour:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 965758306}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b7fa80e7116296f4eb4f49ec1544ee22, type: 3}
m_Name:
m_EditorClassIdentifier:
renderSettingsBounces: 5
renderSettingsGISamples: 16
renderSettingsGIBackFaceWeight: 0
renderSettingsTileSize: 512
renderSettingsPriority: 2
renderSettingsTexelsPerUnit: 20
renderSettingsForceRefresh: 1
renderSettingsForceRebuildGeometry: 1
renderSettingsPerformRendering: 1
renderSettingsUserRenderMode: 0
renderSettingsDistanceShadowmask: 0
renderSettingsSettingsMode: 0
renderSettingsFixSeams: 1
renderSettingsDenoise: 1
renderSettingsDenoise2x: 0
renderSettingsEncode: 1
renderSettingsEncodeMode: 0
renderSettingsOverwriteWarning: 0
renderSettingsAutoAtlas: 1
renderSettingsUnwrapUVs: 1
renderSettingsForceDisableUnwrapUVs: 0
renderSettingsMaxAutoResolution: 4096
renderSettingsMinAutoResolution: 16
renderSettingsUnloadScenes: 1
renderSettingsAdjustSamples: 1
renderSettingsGILODMode: 2
renderSettingsGILODModeEnabled: 0
renderSettingsCheckOverlaps: 0
renderSettingsSkipOutOfBoundsUVs: 1
renderSettingsHackEmissiveBoost: 1
renderSettingsHackIndirectBoost: 1
renderSettingsTempPath: F:/bakery
renderSettingsOutPath:
renderSettingsUseScenePath: 0
renderSettingsHackAOIntensity: 0
renderSettingsHackAOSamples: 16
renderSettingsHackAORadius: 1
renderSettingsShowAOSettings: 0
renderSettingsShowTasks: 1
renderSettingsShowTasks2: 0
renderSettingsShowPaths: 1
renderSettingsShowNet: 1
renderSettingsOcclusionProbes: 0
renderSettingsTexelsPerMap: 0
renderSettingsTexelsColor: 1
renderSettingsTexelsMask: 1
renderSettingsTexelsDir: 1
renderSettingsShowDirWarning: 1
renderSettingsRenderDirMode: 0
renderSettingsShowCheckerSettings: 0
renderSettingsSamplesWarning: 1
renderSettingsPrefabWarning: 1
renderSettingsSplitByScene: 0
renderSettingsUVPaddingMax: 0
renderSettingsPostPacking: 1
renderSettingsHoleFilling: 0
renderSettingsBeepOnFinish: 0
renderSettingsExportTerrainAsHeightmap: 1
renderSettingsRTXMode: 0
renderSettingsLightProbeMode: 1
renderSettingsClientMode: 0
renderSettingsServerAddress: 127.0.0.1
renderSettingsUnwrapper: 0
renderSettingsDenoiserType: 100
renderSettingsExportTerrainTrees: 0
renderSettingsShowPerf: 1
renderSettingsSampleDiv: 1
renderSettingsAtlasPacker: 0
renderSettingsBatchPoints: 1
renderSettingsCompressVolumes: 0
renderSettingsSector: {fileID: 0}
renderSettingsRTPVExport: 1
renderSettingsRTPVSceneView: 0
renderSettingsRTPVWidth: 640
renderSettingsRTPVHeight: 360
lastBakeTime: 0
enlightenWarningShown: 0
enlightenWarningShown2: 0
lightUIDs:
lights: []
implicitGroups: []
implicitGroupedObjects: []
bounds: []
hasEmissive:
uvBuffOffsets:
uvBuffLengths:
uvSrcBuff: []
uvDestBuff: []
lmrIndicesOffsets:
lmrIndicesLengths:
lmrIndicesBuff:
lmGroupLODResFlags:
lmGroupMinLOD:
lmGroupLODMatrix:
serverGetFileList: []
lightmapHasColor:
lightmapHasMask:
lightmapHasDir:
lightmapHasRNM:
modifiedAssetPathList: []
modifiedAssets: []
maps: []
masks: []
dirMaps: []
rnmMaps0: []
rnmMaps1: []
rnmMaps2: []
mapsMode:
bakedRenderers: []
bakedIDs:
bakedScaleOffset: []
bakedVertexOffset:
bakedVertexColorMesh: []
nonBakedRenderers: []
bakedLights: []
bakedLightChannels:
bakedRenderersTerrain: []
bakedIDsTerrain:
bakedScaleOffsetTerrain: []
assetList: []
uvOverlapAssetList:
idremap:
usesRealtimeGI: 0
emptyDirectionTex: {fileID: 0}
anyVolumes: 0
compressedVolumes: 0
sectors: []
--- !u!4 &965758308
Transform:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 965758306}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &1087785896 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 4216666464480220575, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
--- !u!114 &1087785901
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1087785896}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 15ea17d1782e6ce46946baa53e2270a6, type: 3}
m_Name:
m_EditorClassIdentifier:
IsRecord: 1
DBName: crrc
Manager: {fileID: 1614913900}
Msg: {fileID: 1457666570}
Error: {fileID: 1316954459}
StartBtn: {fileID: 1667290692}
StopBtn: {fileID: 324473978}
QuitBtn: {fileID: 1793319550}
OpenFile: {fileID: 127708635}
StartTime: 0
TimeScale: 1
PreLoadSecond: 100
--- !u!114 &1316954459 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 4216666464367198223, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!114 &1457666570 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 4216666463072165586, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &1614913899
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1614913901}
- component: {fileID: 1614913900}
m_Layer: 0
m_Name: Main
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &1614913900
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1614913899}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 61673f6590d0ff745805f9319090354c, type: 3}
m_Name:
m_EditorClassIdentifier:
productionlineID: {fileID: 1881888008}
ProductionlineID:
position: {x: 0, y: 0, z: 0}
--- !u!4 &1614913901
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1614913899}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 1313.013, y: 611.42755, z: -5.5649395}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &1667290692 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 4216666462793344477, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!114 &1793319550 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 4216666463215967794, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!114 &1881888008 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 4216666464089345613, guid: 65f7dfec384977d42a8296bdbde6b01c,
type: 3}
m_PrefabInstance: {fileID: 290266710}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &1901815725
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1901815728}
- component: {fileID: 1901815727}
- component: {fileID: 1901815726}
- component: {fileID: 1901815729}
m_Layer: 0
m_Name: Main Camera
m_TagString: MainCamera
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!81 &1901815726
AudioListener:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1901815725}
m_Enabled: 1
--- !u!20 &1901815727
Camera:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1901815725}
m_Enabled: 1
serializedVersion: 2
m_ClearFlags: 1
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
m_projectionMatrixMode: 1
m_GateFitMode: 2
m_FOVAxisMode: 0
m_Iso: 200
m_ShutterSpeed: 0.005
m_Aperture: 16
m_FocusDistance: 10
m_FocalLength: 50
m_BladeCount: 5
m_Curvature: {x: 2, y: 11}
m_BarrelClipping: 0.25
m_Anamorphism: 0
m_SensorSize: {x: 36, y: 24}
m_LensShift: {x: 0, y: 0}
m_NormalizedViewPortRect:
serializedVersion: 2
x: 0
y: 0
width: 1
height: 1
near clip plane: 0.3
far clip plane: 1000
field of view: 60
orthographic: 0
orthographic size: 5
m_Depth: -1
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingPath: -1
m_TargetTexture: {fileID: 0}
m_TargetDisplay: 0
m_TargetEye: 3
m_HDR: 1
m_AllowMSAA: 1
m_AllowDynamicResolution: 0
m_ForceIntoRT: 0
m_OcclusionCulling: 1
m_StereoConvergence: 10
m_StereoSeparation: 0.022
--- !u!4 &1901815728
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1901815725}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 1, z: -10}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &1901815729
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1901815725}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3}
m_Name:
m_EditorClassIdentifier:
m_RenderShadows: 1
m_RequiresDepthTextureOption: 2
m_RequiresOpaqueTextureOption: 2
m_CameraType: 0
m_Cameras: []
m_RendererIndex: -1
m_VolumeLayerMask:
serializedVersion: 2
m_Bits: 1
m_VolumeTrigger: {fileID: 0}
m_VolumeFrameworkUpdateModeOption: 2
m_RenderPostProcessing: 0
m_Antialiasing: 0
m_AntialiasingQuality: 2
m_StopNaN: 0
m_Dithering: 0
m_ClearDepth: 1
m_AllowXRRendering: 1
m_AllowHDROutput: 1
m_UseScreenCoordOverride: 0
m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0}
m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0}
m_RequiresDepthTexture: 0
m_RequiresColorTexture: 0
m_Version: 2
m_TaaSettings:
quality: 3
frameInfluence: 0.1
jitterScale: 1
mipBias: 0
varianceClampScale: 0.9
contrastAdaptiveSharpening: 0
--- !u!1 &2053513193
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2053513195}
- component: {fileID: 2053513194}
- component: {fileID: 2053513196}
m_Layer: 0
m_Name: Directional Light
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!108 &2053513194
Light:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2053513193}
m_Enabled: 1
serializedVersion: 10
m_Type: 1
m_Shape: 0
m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
m_Intensity: 1
m_Range: 10
m_SpotAngle: 30
m_InnerSpotAngle: 21.80208
m_CookieSize: 10
m_Shadows:
m_Type: 2
m_Resolution: -1
m_CustomResolution: -1
m_Strength: 1
m_Bias: 0.05
m_NormalBias: 0.4
m_NearPlane: 0.2
m_CullingMatrixOverride:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_UseCullingMatrixOverride: 0
m_Cookie: {fileID: 0}
m_DrawHalo: 0
m_Flare: {fileID: 0}
m_RenderMode: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingLayerMask: 1
m_Lightmapping: 4
m_LightShadowCasterMode: 0
m_AreaSize: {x: 1, y: 1}
m_BounceIntensity: 1
m_ColorTemperature: 6570
m_UseColorTemperature: 0
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
m_UseBoundingSphereOverride: 0
m_UseViewFrustumForShadowCasterCull: 1
m_ShadowRadius: 0
m_ShadowAngle: 0
--- !u!4 &2053513195
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2053513193}
serializedVersion: 2
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
m_LocalPosition: {x: 0, y: 3, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
--- !u!114 &2053513196
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2053513193}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Version: 3
m_UsePipelineSettings: 1
m_AdditionalLightsShadowResolutionTier: 2
m_LightLayerMask: 1
m_RenderingLayers: 1
m_CustomShadowLayers: 0
m_ShadowLayerMask: 1
m_ShadowRenderingLayers: 1
m_LightCookieSize: {x: 1, y: 1}
m_LightCookieOffset: {x: 0, y: 0}
m_SoftShadowQuality: 0
--- !u!1660057539 &9223372036854775807
SceneRoots:
m_ObjectHideFlags: 0
m_Roots:
- {fileID: 1901815728}
- {fileID: 2053513195}
- {fileID: 290266710}
- {fileID: 965758308}
- {fileID: 354706562}
- {fileID: 1614913901}
fileFormatVersion: 2
guid: 7cb79544f5cf7bb41afc6ff81fa0afd7
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
......@@ -54,7 +54,7 @@ AnimationClip:
m_Curve:
- serializedVersion: 3
time: 0
value: {x: -22.1, y: 3.5, z: 2.9}
value: {x: -22.1, y: 2.17, z: 2.9}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
......@@ -63,7 +63,7 @@ AnimationClip:
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 20
value: {x: 9.08, y: 3.5, z: 2.9}
value: {x: 9.08, y: 2.17, z: 2.9}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
......@@ -72,7 +72,7 @@ AnimationClip:
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 25
value: {x: 9.08, y: 3.5, z: -8.94}
value: {x: 9.08, y: 2.17, z: -8.94}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
......@@ -81,7 +81,7 @@ AnimationClip:
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 45
value: {x: -16.34, y: 3.5, z: -8.94}
value: {x: -16.34, y: 2.17, z: -8.94}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
......@@ -196,7 +196,7 @@ AnimationClip:
m_Curve:
- serializedVersion: 3
time: 0
value: 3.5
value: 2.17
inSlope: 0
outSlope: 0
tangentMode: 136
......@@ -205,7 +205,7 @@ AnimationClip:
outWeight: 0.33333334
- serializedVersion: 3
time: 20
value: 3.5
value: 2.17
inSlope: 0
outSlope: 0
tangentMode: 136
......@@ -214,7 +214,7 @@ AnimationClip:
outWeight: 0.33333334
- serializedVersion: 3
time: 25
value: 3.5
value: 2.17
inSlope: 0
outSlope: 0
tangentMode: 136
......@@ -223,7 +223,7 @@ AnimationClip:
outWeight: 0.33333334
- serializedVersion: 3
time: 45
value: 3.5
value: 2.17
inSlope: 0
outSlope: 0
tangentMode: 136
......
......@@ -41,7 +41,7 @@ Material:
m_TexEnvs:
- _BaseMap:
m_Texture: {fileID: 2800000, guid: 1f5e75ae75e59c14fa83bfe60f419474, type: 3}
m_Scale: {x: 20, y: 20}
m_Scale: {x: 50, y: 50}
m_Offset: {x: 0, y: 0}
- _BumpMap:
m_Texture: {fileID: 2800000, guid: 5cb7cf199de3cf04295c4f7d70b8a3f8, type: 3}
......@@ -65,7 +65,7 @@ Material:
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 1f5e75ae75e59c14fa83bfe60f419474, type: 3}
m_Scale: {x: 20, y: 20}
m_Scale: {x: 50, y: 50}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 2800000, guid: d96163e0e505e3b47b8d014b9cc60b44, type: 3}
......@@ -101,7 +101,7 @@ Material:
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 3
- _BumpScale: 5
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
......@@ -119,7 +119,7 @@ Material:
- _Parallax: 0.005
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.314
- _Smoothness: 0.532
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
......@@ -128,8 +128,8 @@ Material:
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 0.8773585, g: 0.8773585, b: 0.8773585, a: 1}
- _Color: {r: 0.8773585, g: 0.8773585, b: 0.8773585, a: 1}
- _BaseColor: {r: 0.6886792, g: 0.6886792, b: 0.6886792, a: 1}
- _Color: {r: 0.6886792, g: 0.6886792, b: 0.6886792, a: 1}
- _EmissionColor: {r: 1.4017444, g: 1.6688899, b: 1.6981132, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
This source diff could not be displayed because it is too large. You can view the blob instead.
fileFormatVersion: 2
guid: 65f7dfec384977d42a8296bdbde6b01c
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
{
"MonoBehaviour": {
"Version": 4,
"EnableBurstCompilation": true,
"EnableOptimisations": true,
"EnableSafetyChecks": false,
"EnableDebugInAllBuilds": false,
"DebugDataKind": 1,
"EnableArmv9SecurityFeatures": false,
"CpuMinTargetX32": 0,
"CpuMaxTargetX32": 0,
"CpuMinTargetX64": 0,
"CpuMaxTargetX64": 0,
"CpuTargetsX32": 6,
"CpuTargetsX64": 72,
"OptimizeFor": 0
}
}
......@@ -5,7 +5,7 @@ EditorBuildSettings:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Scenes:
- enabled: 1
- enabled: 0
path: Assets/_Scenes/1_Main.unity
guid: a1193329f89803b4f8a14f6c0b15d2c1
- enabled: 0
......@@ -14,6 +14,9 @@ EditorBuildSettings:
- enabled: 0
path: Assets/_Scenes/1_MainScene.unity
guid: e4c39eb47535a384593b511e167b172c
- enabled: 1
path: Assets/_Scenes/CollectData.unity
guid: 7cb79544f5cf7bb41afc6ff81fa0afd7
m_configObjects:
com.unity.xr.management.loader_settings: {fileID: 11400000, guid: 01409c78069629f4b9a3f0db365bece6,
type: 2}
File added
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment