OOGL.Animation.Bone.GetGlobalTransformationMatrix C# (CSharp) Méthode

GetGlobalTransformationMatrix() private méthode

private GetGlobalTransformationMatrix ( ) : Matrix4
Résultat Matrix4
		private Matrix4 GetGlobalTransformationMatrix()
		{
			if (parent == null)
			{
				return this.localTransformationMatrix;
			}
			else
			{
				return this.localTransformationMatrix * parent.GetGlobalTransformationMatrix();
			}
		}
	}