SA.FullBodyIK._Bones_PrepareUpdate C# (CSharp) Method

_Bones_PrepareUpdate() public method

public _Bones_PrepareUpdate ( ) : void
return void
		void _Bones_PrepareUpdate()
		{
			if( _bones != null ) {
				int boneLength = _bones.Length;
                for( int i = 0; i != boneLength; ++i ) {
					if( _bones[i] != null ) {
						_bones[i].PrepareUpdate();
					}
				}
			}
		}
FullBodyIK