OOGL.Animation.Bone.GetGlobalTransformationMatrix C# (CSharp) 메소드

GetGlobalTransformationMatrix() 개인적인 메소드

private GetGlobalTransformationMatrix ( ) : Matrix4
리턴 Matrix4
		private Matrix4 GetGlobalTransformationMatrix()
		{
			if (parent == null)
			{
				return this.localTransformationMatrix;
			}
			else
			{
				return this.localTransformationMatrix * parent.GetGlobalTransformationMatrix();
			}
		}
	}