提交新概念 Tile从服务器

This commit is contained in:
PC-20230316NUNE\Administrator
2024-08-31 15:35:12 +08:00
parent 77db4d7d71
commit d67032e1de
1039 changed files with 57738 additions and 412 deletions

View File

@@ -20,7 +20,9 @@ namespace Service
public MeshData MapData2;
//角色1
public GameObject Player1;
public GameObject Player;
//Boss
public GameObject Boss;
//世界
public GameObject VWorld;
@@ -37,9 +39,10 @@ namespace Service
}
public void Register(GameObject world,GameObject player,CinemachineFreeLook freeLook)
public void Register(GameObject world,GameObject player,GameObject boss,CinemachineFreeLook freeLook)
{
Player1 = player;
Player = player;
Boss = boss;
VWorld = world;
FreeLook = freeLook;
}