public void SetCheatResultText( AsCheatManager.eCheatType cheatType) { SetCheatResultText( cheatType, "", ""); }
public void SetCheatResultText( AsCheatManager.eCheatType cheatType, string strFront, string strTail) { info.Text = "Note: " + strFront + m_strCheatCommandsRes[(int)cheatType] + strTail; info.Color = Color.white; }
public void SetCheatResultTextErr( AsCheatManager.eCheatErrType cheatErrType) { info.Text = "Note: " + m_strCheatCommandsErr[ (int)cheatErrType]; info.Color = Color.red; }