Browse Source

展示信息绑定方式修改

develop
杨栋梁 12 months ago
parent
commit
c04142207d
  1. 6
      Assets/AddressableAssetsData/AddressableAssetSettings.asset
  2. 62
      Assets/Scenes/MainScene.unity
  3. 51
      Assets/Scripts/ANet/DeviceFollowTarget.cs
  4. 11
      Assets/Scripts/ANet/DeviceFollowTarget.cs.meta
  5. 17
      Assets/Scripts/ANet/DeviceItem.cs
  6. 3
      Assets/Scripts/ANet/DeviceMenuToggle.cs
  7. 99
      Assets/Scripts/ANet/DeviceObj.cs
  8. 139
      Assets/Scripts/ANet/DeviceObjManager.cs
  9. 11
      Assets/Scripts/ANet/DeviceObjManager.cs.meta
  10. 91
      Assets/Scripts/ANet/DevicePanelManager.cs
  11. 46
      Assets/Scripts/ANet/Prefabs/DeviceIconPanel.prefab
  12. 7
      Assets/Scripts/ANet/Prefabs/DeviceIconPanel.prefab.meta
  13. 135
      Assets/Scripts/ANet/Prefabs/Icon.prefab
  14. 7
      Assets/Scripts/ANet/Prefabs/Icon.prefab.meta
  15. 113
      Assets/Scripts/ANet/Prefabs/Point.prefab
  16. 7
      Assets/Scripts/ANet/Prefabs/Point.prefab.meta

6
Assets/AddressableAssetsData/AddressableAssetSettings.asset

@ -124,4 +124,8 @@ MonoBehaviour:
m_RegisteredServiceTypeRefs: []
m_GlobalProfileVariablesInfos:
- key: PrivateIpAddress
value: 192.168.1.34
value: 192.168.1.163
- key: PrivateIpAddress_1
value: 192.168.35.1
- key: PrivateIpAddress_2
value: 192.168.221.1

62
Assets/Scenes/MainScene.unity

@ -251,7 +251,7 @@ PrefabInstance:
- target: {fileID: 1265597271646066058, guid: aad59b329c27c57428a3ddbb1205a7ab,
type: 3}
propertyPath: m_RootOrder
value: 2
value: 3
objectReference: {fileID: 0}
- target: {fileID: 1265597271646066058, guid: aad59b329c27c57428a3ddbb1205a7ab,
type: 3}
@ -622,6 +622,51 @@ Transform:
m_Father: {fileID: 1133822276}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &831345132
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 831345133}
- component: {fileID: 831345134}
m_Layer: 0
m_Name: DeviceCloneParent
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &831345133
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 831345132}
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_Children: []
m_Father: {fileID: 0}
m_RootOrder: 5
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &831345134
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 831345132}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: a574343a24c732d4b85cd8c6f01e2b2a, type: 3}
m_Name:
m_EditorClassIdentifier:
Point: {fileID: 3051062197270240133, guid: 81fb2d1d7b450ee4baea675cc8e594f6, type: 3}
NowPointList: []
--- !u!1 &974137406
GameObject:
m_ObjectHideFlags: 0
@ -1206,15 +1251,18 @@ MonoBehaviour:
m_EditorClassIdentifier:
DeviceBindPrefab: {fileID: 1265597271646066057, guid: 83b297e50f9738f4a89108f0556ab422,
type: 3}
ShuiBengList: []
ShuiXiangList: []
XHSList: []
PenLinBengList: []
PaiYanJiList: []
SongFengJiList: []
textType: 0
BindObjectList: []
NowClickObject: {fileID: 0}
NowType: 0
CanClone: 0
MenuType: 0
layerMask:
serializedVersion: 2
m_Bits: 4294967295
CloneParent: {fileID: 831345133}
ClonePrefab: {fileID: 3051062197270240133, guid: 81fb2d1d7b450ee4baea675cc8e594f6,
type: 3}
--- !u!222 &2140083325
CanvasRenderer:
m_ObjectHideFlags: 0

51
Assets/Scripts/ANet/DeviceFollowTarget.cs

@ -0,0 +1,51 @@
using AX.MessageSystem;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class DeviceFollowTarget : MonoBehaviour
{
public Transform target;
public Camera uiCamera;
private float offset_Y = 2.5f;
private void Start()
{
GetComponent<Button>().onClick.AddListener(ViewClick);
uiCamera = GameObject.Find("Canvas").GetComponent<Canvas>().worldCamera;
}
public void ViewClick()
{
MessageDispatcher.SendMessage("FLOORNUMBER", target.GetComponent<DeviceObj>().floorId, "Floor");
Camera.main.GetComponent<CameraOrbit>().SetCameraView(target.position, 15);
//if (target)
//{
// target.GetComponent<DeviceObj>().ShowList();
//}
}
private Vector2 WorldPosToUIPos(Vector3 worldPos)
{
Vector2 world2ScreenPos = Camera.main.WorldToScreenPoint(worldPos);
Vector2 uiPos = new Vector2();
RectTransformUtility.ScreenPointToLocalPointInRectangle(transform.parent.GetComponent<RectTransform>(), world2ScreenPos, uiCamera, out uiPos);
return uiPos;
}
private void LateUpdate()
{
if (gameObject.activeSelf && target)
{
GetComponent<RectTransform>().anchoredPosition =
WorldPosToUIPos(new Vector3(target.transform.position.x, target.transform.position.y + offset_Y, target.transform.position.z));
}
}
public void SetTarget(DeviceObj deviceObj)
{
target = deviceObj.transform;
}
}

11
Assets/Scripts/ANet/DeviceFollowTarget.cs.meta

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 0526089f5df3b684ca63d3fcae2ba54f
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

17
Assets/Scripts/ANet/DeviceItem.cs

@ -27,6 +27,23 @@ public class DeviceItem : MonoBehaviour
private void ViewBtn_Click()
{
DeviceInfo.Instance.OnShow(BindData);
string deviceName = "";
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.DeviceId == BindData.deviceNo)
{
deviceName = item.ObjName;
break;
}
}
if (!string.IsNullOrEmpty(deviceName))
{
DeviceObj obj = DeviceObjManager.Instance.GetDeviceByName(deviceName);
if (null != obj)
{
obj.GetComponent<DeviceObj>().ShowList();
}
}
}
private void LocalBtn_Click()

3
Assets/Scripts/ANet/DeviceMenuToggle.cs

@ -3,6 +3,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using AX.MessageSystem;
[RequireComponent(typeof(Toggle))]
public class DeviceMenuToggle : MonoBehaviour
@ -25,5 +26,7 @@ public class DeviceMenuToggle : MonoBehaviour
{
DevicePanelManager.Instance.ShowBindList(DeviceType.);
}
MessageDispatcher.SendMessage("DeviceMenuChanged", new KeyValuePair<DeviceType, bool>(menuType, isOn));
}
}

99
Assets/Scripts/ANet/DeviceObj.cs

@ -2,15 +2,81 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using AX.MessageSystem;
using System;
public class DeviceObj : MonoBehaviour
{
public DeviceList BindData;
public DeviceType BindType;
public GameObject tParent;
public GameObject tIcon;
public GameObject tIconObj;
public bool isShow = false;
public int floorId = 0;
void Start()
{
MessageDispatcher.AddListener("DeviceMenuChanged", DeviceMenuChanged, "Floor");
MessageDispatcher.AddListener("FLOORNUMBER", FloorChanged);
}
private void FloorChanged(IMessage obj)
{
//int number = (int)obj.Data;
//isShow = number == floorId ? true : false;
//if (tIconObj)
// tIconObj.gameObject.SetActive(isShow);
//gameObject.GetComponent<MeshRenderer>().enabled = isShow;
}
private void DeviceMenuChanged(IMessage obj)
{
KeyValuePair<DeviceType, bool> data = (KeyValuePair<DeviceType, bool>)obj.Data;
if (data.Key == BindType)
{
isShow = data.Value;
if (tIconObj)
tIconObj.gameObject.SetActive(isShow);
gameObject.GetComponent<MeshRenderer>().enabled = isShow;
}
else
{
isShow = false;
if (tIconObj)
tIconObj.gameObject.SetActive(isShow);
gameObject.GetComponent<MeshRenderer>().enabled = isShow;
}
}
private void OnDestroy()
{
MessageDispatcher.RemoveListener("DeviceMenuChanged", DeviceMenuChanged);
MessageDispatcher.RemoveListener("FLOORNUMBER", FloorChanged, "Floor");
}
private void Update()
{
if (Input.GetKeyDown(KeyCode.Delete))
{
if (DevicePanelManager.Instance.NowClickObject == this)
{
DeviceObjManager.Instance.DelObj(name);
if (tIconObj)
{
Destroy(tIconObj);
}
Destroy(gameObject);
}
}
//if (BindType == DevicePanelManager.Instance.MenuType)
//{
// if (!isShow)
// isShow = true;
//}
//else
//{
// if (isShow)
// isShow = false;
//}
}
private void OnMouseDown()
{
@ -22,7 +88,38 @@ public class DeviceObj : MonoBehaviour
}
public void ShowList()
{
DevicePanelManager.Instance.ShowBindList(BindType, this);
if (tIconObj)
{
tIconObj.GetComponent<DeviceFollowTarget>().ViewClick();
}
}
public void CreateIcon(DeviceType type, int floorId)
{
BindType = type;
this.floorId = floorId;
if (tIconObj == null)
{
var topIconsP = GameObject.Find("Canvas").transform.Find("DeviceIconPanel");
if (!topIconsP)
{
topIconsP = Instantiate(tParent, GameObject.Find("Canvas").transform).transform;
topIconsP.name = "DeviceIconPanel";
}
topIconsP.transform.SetAsFirstSibling();
tIconObj = Instantiate(tIcon, topIconsP.transform);
tIconObj.name = name;
tIconObj.GetComponent<DeviceFollowTarget>().SetTarget(this);
}
if (DevicePanelManager.Instance.NowType == BindType)
{
isShow = true;
}
else
{
isShow = false;
}
tIconObj.gameObject.SetActive(isShow);
gameObject.GetComponent<MeshRenderer>().enabled = isShow;
}
}

139
Assets/Scripts/ANet/DeviceObjManager.cs

@ -0,0 +1,139 @@
using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[Serializable]
public class DeviceCloneData
{
public string name;
public int floorId;
public DeviceType type;
public Vector3 postion;
}
public class DeviceObjManager : MonoBehaviour
{
public static DeviceObjManager Instance;
public GameObject Point;
public List<DeviceCloneData> NowPointList = new List<DeviceCloneData>();
private string objId = "objlistid";
private void Awake()
{
Instance = this;
}
private void Start()
{
LoadDeviceObjs();
}
public DeviceObj GetDeviceByName(string dname)
{
DeviceObj result = null;
foreach (Transform item in transform)
{
if (item.name == dname)
{
result = item.GetComponent<DeviceObj>();
break;
}
}
return result;
}
public void AddObj(string objName)
{
foreach (Transform item in transform)
{
if (item.name == objName && item.GetComponent<DeviceObj>())
{
var obj = new DeviceCloneData();
obj.name = item.name;
obj.postion = item.position;
obj.floorId = item.GetComponent<DeviceObj>().floorId;
obj.type = item.GetComponent<DeviceObj>().BindType;
bool has = false;
foreach (var data in NowPointList)
{
if (data.name == obj.name)
{
data.postion = obj.postion;
data.type = obj.type;
}
}
if (!has)
{
NowPointList.Add(obj);
}
break;
}
}
SaveObjs();
}
public void DelObj(string objName)
{
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.ObjName == objName)
{
item.ObjName = "";
break;
}
}
DevicePanelManager.Instance.SaveDeviceObjConfig();
for (int i = 0; i < NowPointList.Count; i++)
{
if (NowPointList[i].name == objName)
{
NowPointList.Remove(NowPointList[i]);
break;
}
}
SaveObjs();
}
public void SaveObjs()
{
var json = JsonConvert.SerializeObject(NowPointList);
string url = string.Format(HttpManager.Instance.PostBreakPointsById, objId);
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
url = url.Substring(url.IndexOf("api") - 1);
}
HttpManager.Instance.Post(url, json, () =>
{
Debug.Log("保存点位成功!");
});
}
private void LoadDeviceObjs()
{
try
{
string url = string.Format(HttpManager.Instance.GetBreakPointsById, objId);
Debug.Log($"the url is :{ url}");
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
url = url.Substring(url.IndexOf("api") - 1);
}
HttpManager.Instance.Get<string>(url, d =>
{
NowPointList = JsonConvert.DeserializeObject<List<DeviceCloneData>>(d);
foreach (Transform item in transform)
{
Destroy(item.gameObject);
}
foreach (var item in NowPointList)
{
GameObject go = Instantiate(Point, item.postion, Quaternion.identity, transform);
go.GetComponent<DeviceObj>().CreateIcon(item.type, item.floorId);
go.name = item.name;
SelectionManager.Instance.Sets.Add(go);
}
});
}
catch
{
Debug.LogError("暂无数据!");
}
}
}

11
Assets/Scripts/ANet/DeviceObjManager.cs.meta

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: a574343a24c732d4b85cd8c6f01e2b2a
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

91
Assets/Scripts/ANet/DevicePanelManager.cs

@ -8,6 +8,7 @@ using UnityEngine;
using System.Security.Cryptography;
using System.IO;
using UnityEngine.Networking;
using UnityEngine.EventSystems;
#region 接口数据类型
#pragma warning disable IDE1006 // 命名样式
@ -206,6 +207,14 @@ public class DevicePanelManager : MonoBehaviour
public DeviceObj NowClickObject;
public DeviceType NowType;
private string objId = "binddataid";
#region 创建绑定点位
public bool CanClone = false;
public DeviceType MenuType;
public LayerMask layerMask = -1;
private float DistanceY = 0;
public Transform CloneParent;
public GameObject ClonePrefab;
#endregion
#endregion
void Awake()
{
@ -218,6 +227,7 @@ public class DevicePanelManager : MonoBehaviour
}
public void RefreshData()
{
StopAllCoroutines();
LoadDeciceData();
}
public DeviceList GetDeviceData(DeviceList data)
@ -256,16 +266,56 @@ public class DevicePanelManager : MonoBehaviour
}
private void LateUpdate()
{
if(Input.GetKeyDown(KeyCode.T))
//if (Input.GetKeyDown(KeyCode.T))
//{
// ShowBindList(textType);
//}
if (Input.GetKey(KeyCode.Q))
{
if (Input.GetKeyDown(KeyCode.P))
{
CanClone = true;
}
if (Input.GetKeyDown(KeyCode.S))
{
DeviceObjManager.Instance.SaveObjs();
}
}
if (CanClone)
{
ShowBindList(textType);
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
if (Physics.Raycast(ray, out RaycastHit hit, Mathf.Infinity, layerMask))
{
if (!EventSystem.current.IsPointerOverGameObject())
{
if (Input.GetMouseButtonDown(0) && hit.collider.GetComponent<InstantiateData>())
{
CreatePoint(hit.point, hit.collider.GetComponent<InstantiateData>().floorId);
}
}
if (Input.GetMouseButtonDown(1))
{
CanClone = false;
}
}
}
}
private void CreatePoint(Vector3 position, int floorId)
{
var pos = new Vector3(position.x, position.y + DistanceY, position.z);
var go = Instantiate(ClonePrefab, pos, Quaternion.identity, CloneParent);
go.name = $"{MenuType}{AX.Network.Common.GUID.NewGuid()}";
if (go.GetComponent<DeviceObj>())
{
go.GetComponent<DeviceObj>().CreateIcon(MenuType, floorId);
}
SelectionManager.Instance.Sets.Add(go);
}
public void ShowBindList(DeviceType type)
{
StopAllCoroutines();
MenuType = type;
NowClickObject = null;
NowType = type;
if (type != DeviceType.)
@ -282,7 +332,7 @@ public class DevicePanelManager : MonoBehaviour
break;
}
}
StartCoroutine(waitToBind(type, infoList));
BindDeviceList(type, infoList);
}
else
{
@ -294,7 +344,6 @@ public class DevicePanelManager : MonoBehaviour
}
public void ShowBindList(DeviceType type, DeviceObj selectObject)
{
StopAllCoroutines();
NowClickObject = selectObject;
NowType = type;
if (type != DeviceType.)
@ -311,7 +360,7 @@ public class DevicePanelManager : MonoBehaviour
break;
}
}
StartCoroutine(waitToBind(type, infoList));
BindDeviceList(type, infoList);
}
else
{
@ -321,9 +370,8 @@ public class DevicePanelManager : MonoBehaviour
}
}
}
IEnumerator waitToBind(DeviceType type, List<DeviceList> bindData, float time = 0.1f)
private void BindDeviceList(DeviceType type, List<DeviceList> bindData)
{
yield return new WaitForSeconds(time);
bool has = false;
foreach (Transform item in transform)
{
@ -543,6 +591,19 @@ public class DevicePanelManager : MonoBehaviour
{
BindObjectList.Add(config);
}
string bindName = "";
foreach (Transform ts in DeviceObjManager.Instance.transform)
{
if (ts.name == config.ObjName)
{
bindName = ts.name;
break;
}
}
if (!string.IsNullOrEmpty(bindName))
{
DeviceObjManager.Instance.AddObj(bindName);
}
var json = JsonConvert.SerializeObject(BindObjectList);
string url = string.Format(HttpManager.Instance.PostBreakPointsById, objId);
if (Application.platform == RuntimePlatform.WebGLPlayer)
@ -555,5 +616,17 @@ public class DevicePanelManager : MonoBehaviour
});
}
public void SaveDeviceObjConfig()
{
var json = JsonConvert.SerializeObject(BindObjectList);
string url = string.Format(HttpManager.Instance.PostBreakPointsById, objId);
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
url = url.Substring(url.IndexOf("api") - 1);
}
HttpManager.Instance.Post(url, json, () =>
{
Debug.Log("保存成功!");
});
}
}

46
Assets/Scripts/ANet/Prefabs/DeviceIconPanel.prefab

@ -0,0 +1,46 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &7361408201843894546
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 434397035475234364}
- component: {fileID: 9168469932714213855}
m_Layer: 5
m_Name: DeviceIconPanel
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &434397035475234364
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7361408201843894546}
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_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &9168469932714213855
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7361408201843894546}
m_CullTransparentMesh: 0

7
Assets/Scripts/ANet/Prefabs/DeviceIconPanel.prefab.meta

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 0ae9d78fde5f1244ba4138d6334966ff
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

135
Assets/Scripts/ANet/Prefabs/Icon.prefab

@ -0,0 +1,135 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &2165570965609724972
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 4024504446923160593}
- component: {fileID: 3463756388761933415}
- component: {fileID: 887107569440826126}
- component: {fileID: 449485609122796019}
- component: {fileID: -3378482227028537232}
m_Layer: 5
m_Name: Icon
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &4024504446923160593
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2165570965609724972}
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_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 50, y: 50}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &3463756388761933415
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2165570965609724972}
m_CullTransparentMesh: 0
--- !u!114 &887107569440826126
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2165570965609724972}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 0, b: 0, a: 1}
m_RaycastTarget: 1
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 5a105fe12e6c52d4db49fa5a196556eb, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!114 &449485609122796019
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2165570965609724972}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0526089f5df3b684ca63d3fcae2ba54f, type: 3}
m_Name:
m_EditorClassIdentifier:
target: {fileID: 0}
uiCamera: {fileID: 0}
--- !u!114 &-3378482227028537232
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2165570965609724972}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Navigation:
m_Mode: 3
m_SelectOnUp: {fileID: 0}
m_SelectOnDown: {fileID: 0}
m_SelectOnLeft: {fileID: 0}
m_SelectOnRight: {fileID: 0}
m_Transition: 1
m_Colors:
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_ColorMultiplier: 1
m_FadeDuration: 0.1
m_SpriteState:
m_HighlightedSprite: {fileID: 0}
m_PressedSprite: {fileID: 0}
m_SelectedSprite: {fileID: 0}
m_DisabledSprite: {fileID: 0}
m_AnimationTriggers:
m_NormalTrigger: Normal
m_HighlightedTrigger: Highlighted
m_PressedTrigger: Pressed
m_SelectedTrigger: Selected
m_DisabledTrigger: Disabled
m_Interactable: 1
m_TargetGraphic: {fileID: 0}
m_OnClick:
m_PersistentCalls:
m_Calls: []

7
Assets/Scripts/ANet/Prefabs/Icon.prefab.meta

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 85a6b279122fde645be21030eae0c2b4
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

113
Assets/Scripts/ANet/Prefabs/Point.prefab

@ -0,0 +1,113 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &3051062197270240133
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 219326116222627409}
- component: {fileID: 6434786178584522032}
- component: {fileID: 7372847723308216205}
- component: {fileID: 4951752539651406649}
- component: {fileID: -3409302782171348623}
m_Layer: 0
m_Name: Point
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &219326116222627409
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3051062197270240133}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 0.5, y: 0.5, z: 0.5}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &6434786178584522032
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3051062197270240133}
m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
--- !u!23 &7372847723308216205
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3051062197270240133}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
--- !u!65 &4951752539651406649
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3051062197270240133}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 1, y: 1, z: 1}
m_Center: {x: 0, y: 0, z: 0}
--- !u!114 &-3409302782171348623
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3051062197270240133}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 740b18542139ee9469c8e41c0175ef99, type: 3}
m_Name:
m_EditorClassIdentifier:
BindType: 0
tParent: {fileID: 7361408201843894546, guid: 0ae9d78fde5f1244ba4138d6334966ff, type: 3}
tIcon: {fileID: 2165570965609724972, guid: 85a6b279122fde645be21030eae0c2b4, type: 3}
tIconObj: {fileID: 0}
isShow: 0

7
Assets/Scripts/ANet/Prefabs/Point.prefab.meta

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 81fb2d1d7b450ee4baea675cc8e594f6
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Loading…
Cancel
Save