Skip to content

Commit

Permalink
Remove some default values
Browse files Browse the repository at this point in the history
  • Loading branch information
AnhPham committed Jan 4, 2025
1 parent 505dd4f commit 064c7e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public static void Add<T>(string screenName, string showAnimation = "ScaleShow",
/// <summary>
/// Add a screen on top of all screens. Use ScreenAnimation enum instead of string for animations
/// </summary>
public static void Add<T>(string screenName, ScreenAnimation showAnimation = ScreenAnimation.ScaleShow, ScreenAnimation hideAnimation = ScreenAnimation.ScaleHide, string animationObjectName = "", bool useExistingScreen = false, OnScreenLoad<T> onScreenLoad = null, bool hasShield = true, bool manually = true, AddConditionDelegate addCondition = null, bool waitUntilNoScreen = false, bool destroyTopScreen = false) where T : Component
public static void Add<T>(string screenName, ScreenAnimation showAnimation, ScreenAnimation hideAnimation, string animationObjectName = "", bool useExistingScreen = false, OnScreenLoad<T> onScreenLoad = null, bool hasShield = true, bool manually = true, AddConditionDelegate addCondition = null, bool waitUntilNoScreen = false, bool destroyTopScreen = false) where T : Component
{
Add(screenName, showAnimation.ToString(), hideAnimation.ToString(), animationObjectName, useExistingScreen, onScreenLoad, hasShield, manually, addCondition, waitUntilNoScreen, destroyTopScreen);
}
Expand Down

0 comments on commit 064c7e9

Please sign in to comment.