public static void SafelyFinish(this ITween tween)
 {
     if (tween != null)
     {
         tween.Finish();
     }
 }