You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
514 B
18 lines
514 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
/// <summary> |
|
/// 进入主场景前,将NetworkSYNCHelper里记录的信息加载 |
|
/// 即后登入角色加载其他已经在主场景的角色的操作等同步 |
|
/// </summary> |
|
public class NetworkBfDataLoad : MonoBehaviour { |
|
//void Start() |
|
//{ |
|
// for (int i = 0; i < NetworkSyncHelper.SyncInfos.Count; i++) |
|
// { |
|
|
|
// NetworkSyncHelper.SyncInfos[i].LoadFuntion(); |
|
// } |
|
//} |
|
}
|
|
|