/// <summary> Tries to update the InteractionTracker's scale by applying an animation. </summary>
 /// <param name="expressionNode">The root ExpressionNode that represents the ExpressionAnimation to apply to the InteractionTracker's scale.</param>
 /// <param name="centerPoint">The centerPoint to use when scaling.</param>
 public static void TryUpdateScaleWithAnimation(this InteractionTracker tracker, ExpressionNode expressionNode, Vector3 centerPoint)
 {
     tracker.TryUpdateScaleWithAnimation(CreateExpressionAnimationFromNode(tracker.Compositor, expressionNode), centerPoint);
 }