SA.FullBodyIK._Bones_WriteToTransform C# (CSharp) Method

_Bones_WriteToTransform() public method

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