Axiom.Core.Entity.RemoveSoftwareAnimationRequest C# (CSharp) 메소드

RemoveSoftwareAnimationRequest() 보호된 메소드

protected RemoveSoftwareAnimationRequest ( bool normalsAlso ) : void
normalsAlso bool
리턴 void
		protected void RemoveSoftwareAnimationRequest( bool normalsAlso )
		{
			if ( this.softwareAnimationRequests == 0 ||
				 ( normalsAlso && this.softwareAnimationNormalsRequests == 0 ) )
			{
				throw new Exception( "Attempt to remove nonexistant request, in Entity.RemoveSoftwareAnimationRequest" );
			}
			this.softwareAnimationRequests--;
			if ( normalsAlso )
			{
				this.softwareAnimationNormalsRequests--;
			}
		}