嗨,有人知道我该如何解决这个问题。试图增加我的游戏水平。 任何人都知道我需要更改代码的哪一部分
protected SyncFieldString syncTitle = new SyncFieldString();
public virtual string Title
{
get { return title; }
set
{
title = value;
if (IsServer)
syncTitle.Value = value;
}
}
protected SyncFieldString syncLevel = new SyncFieldString();
public virtual string Level
{
get { return level; }
set
{
level = value;
if (IsServer)
syncLevel.Value = value;
}
}
还有一些我的关卡格式的代码
if (uiTextLevel != null)
uiTextLevel.text = string.Format(levelFormat, Data == null ? "N/A" : Data.Level.ToString("N0"));
对不起,我是初学者。