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