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

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

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

			this.NPC.StandStyle = stand;
			this.NPC.StandStyleTalking = talkStand;
		}