SA.FullBodyIKBehaviourBase.LateUpdate C# (CSharp) Method

LateUpdate() protected method

protected LateUpdate ( ) : void
return void
		protected virtual void LateUpdate()
		{
#if UNITY_EDITOR
			if( !Application.isPlaying ) {
				return;
			}
#endif
			if( _cache_fullBodyIK == null ) {
				_cache_fullBodyIK = fullBodyIK;
			}
			if( _cache_fullBodyIK != null ) {
				_cache_fullBodyIK.Update();
			}
		}