Compare commits
3 Commits
9345718457
...
db33ed6504
Author | SHA1 | Date |
---|---|---|
|
db33ed6504 | |
|
b6b6b29751 | |
|
1a194fa370 |
|
@ -33,11 +33,10 @@ public class DragController : MonoBehaviour, IBeginDragHandler, IEndDragHandler,
|
|||
}
|
||||
}
|
||||
|
||||
public async void OnEndDrag(PointerEventData eventData)
|
||||
public void OnEndDrag(PointerEventData eventData)
|
||||
{
|
||||
if (model != null)
|
||||
{
|
||||
|
||||
model.GetComponent<EquipmentCommon>().isStartRehearsing = GlobalFlag.isStartRehearsing;
|
||||
List<List_paraItem> temp = UIBootstrap.Instance.GetListParaItemById(deviceID);
|
||||
|
||||
|
|
|
@ -92,10 +92,6 @@ public class GameManager : MonoBehaviour
|
|||
tenkokuModule.mainCamera = spt.transform;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void Start()
|
||||
{
|
||||
SetWeatherValue();
|
||||
|
@ -105,8 +101,6 @@ public class GameManager : MonoBehaviour
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public void OnOtherPlayerOnline(string msg)
|
||||
{
|
||||
StopCoroutine(WaitSpawn(msg));
|
||||
|
|
|
@ -216,7 +216,7 @@ public class UnmannedAerialVehicleManage : MonoBehaviour
|
|||
{
|
||||
if (equipmentCommon)
|
||||
{
|
||||
string msg = $"send2room ,{equipmentCommon.equipmentType},{transform.position},{transform.eulerAngles}";
|
||||
string msg = $"send2room {equipmentCommon.equipmentType}+{transform.position}+{transform.eulerAngles}";
|
||||
Debug.Log(msg);
|
||||
_ = SyncCreateRoom.SendMessageAsync(msg);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue