mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-09-27 10:46:17 +00:00
临时提交
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
using JNGame.Runtime.Util;
|
||||
using JNGame.Sync.System;
|
||||
using JNGame.Sync.View;
|
||||
using JNGame.Util;
|
||||
|
||||
namespace Game.JNGFrame.View
|
||||
{
|
||||
|
@@ -1,13 +1,8 @@
|
||||
using AppGame;
|
||||
using AppGame.Sync;
|
||||
using Cinemachine;
|
||||
using System.Collections.Concurrent;
|
||||
using AppGame;
|
||||
using DG.Tweening;
|
||||
using Game.JNGFrame.Logic.Entity;
|
||||
using Game.JNGState.Logic.Data;
|
||||
using JNGame.Math;
|
||||
using JNGame.Sync.System;
|
||||
using JNGame.Sync.View;
|
||||
using Service;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Game.JNGFrame.View.Entity
|
||||
@@ -38,9 +33,9 @@ namespace Game.JNGFrame.View.Entity
|
||||
return view;
|
||||
}
|
||||
|
||||
public override EDBossData[] GetData()
|
||||
public override ConcurrentDictionary<ulong,EDBossData> GetData()
|
||||
{
|
||||
return GetService<EDBossDataSystem>().Datas;
|
||||
return GetService<EDBossDataSystem>().Data;
|
||||
}
|
||||
|
||||
public override void ViewRemove(GameObject view)
|
||||
|
@@ -1,4 +1,5 @@
|
||||
using AppGame;
|
||||
using System.Collections.Concurrent;
|
||||
using AppGame;
|
||||
using DG.Tweening;
|
||||
using Game.JNGFrame.Logic.Entity;
|
||||
using Game.JNGState.Logic.Data;
|
||||
@@ -38,9 +39,9 @@ namespace Game.JNGFrame.View.Entity
|
||||
return view;
|
||||
}
|
||||
|
||||
public override EDNodeData[] GetData()
|
||||
public override ConcurrentDictionary<ulong,EDNodeData> GetData()
|
||||
{
|
||||
return GetService<EDNodeDataSystem>().Datas;
|
||||
return GetService<EDNodeDataSystem>().Data;
|
||||
}
|
||||
|
||||
public override void ViewRemove(GameObject view)
|
||||
|
@@ -1,4 +1,6 @@
|
||||
using AppGame;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using AppGame;
|
||||
using AppGame.Sync;
|
||||
using Cinemachine;
|
||||
using DG.Tweening;
|
||||
@@ -86,9 +88,9 @@ namespace Game.JNGFrame.View.Entity
|
||||
return view;
|
||||
}
|
||||
|
||||
public override EDPlayerData[] GetData()
|
||||
public override ConcurrentDictionary<ulong,EDPlayerData> GetData()
|
||||
{
|
||||
return GetService<EDPlayerDataSystem>().Datas;
|
||||
return GetService<EDPlayerDataSystem>().Data;
|
||||
}
|
||||
|
||||
public override void ViewRemove(GameObject view)
|
||||
|
@@ -22,7 +22,7 @@ namespace Game.JNGFrame.View
|
||||
base.Execute();
|
||||
|
||||
//调用改动
|
||||
var dataList = GetData();
|
||||
var dataList = GetData().Values;
|
||||
|
||||
foreach (var data in dataList){
|
||||
|
||||
|
Reference in New Issue
Block a user