コード例 #1
0
 public void AnimateConverter()
 {
     if (uiSettings.Value.AnimationsEnabled)
     {
         AnimationStory.Begin();
     }
 }
コード例 #2
0
 public void SetBroadcastVisibility(bool hide)
 {
     try
     {
         if (AnimationStory != null)
         {
             if (hide)
             {
                 AnimationStory.Stop();
             }
             else
             {
                 AnimationStory.Begin();
             }
         }
     }
     catch { }
 }