Aura.Channel.Scripting.Scripts.NpcScript.SetName C# (CSharp) Метод

SetName() защищенный Метод

Sets NPC's name.
protected SetName ( string name ) : void
name string
Результат void
		protected void SetName(string name)
		{
			if (this.NPC == null)
				throw new InvalidOperationException("NPC's race has to be set first.");

			this.NPC.Name = name;
		}