diff --git a/Assets/Scripts/Games/CoinToss/CoinToss.cs b/Assets/Scripts/Games/CoinToss/CoinToss.cs index 520f4c87c..a461fdcd3 100644 --- a/Assets/Scripts/Games/CoinToss/CoinToss.cs +++ b/Assets/Scripts/Games/CoinToss/CoinToss.cs @@ -18,8 +18,8 @@ namespace HeavenStudio.Games.Loaders defaultLength = 7, parameters = new List() { - new Param("type", CoinToss.CoinVariation.Default, "Variation", "Special Coin Variations"), - new Param("toggle", false, "Audience Reaction", "Enable Audience Reaction"), + new Param("type", CoinToss.CoinVariation.Default, "Variation", "Choose the version of the cue to play."), + new Param("toggle", false, "Audience Reaction", "Toggle if there should be cheering or booing after the cue."), } }, new GameAction("fade background color", "Background Color") @@ -30,11 +30,11 @@ namespace HeavenStudio.Games.Loaders defaultLength = 4f, parameters = new List() { - new Param("colorStart", CoinToss.defaultBgColor, "BG Start Color", "The starting color in the fade"), - new Param("colorEnd", CoinToss.defaultBgColor, "BG End Color", "The ending color in the fade"), - new Param("colorStartF", CoinToss.defaultBgColor, "FG Start Color", "The starting color in the fade"), - new Param("colorEndF", CoinToss.defaultBgColor, "FG End Color", "The ending color in the fade"), - new Param("ease", Util.EasingFunction.Ease.Linear, "Ease") + new Param("colorStart", CoinToss.defaultBgColor, "BG Start Color", "Set the color for the outer ring at the start of the event."), + new Param("colorEnd", CoinToss.defaultBgColor, "BG End Color", "Set the color for the outer ring at the end of the event."), + new Param("colorStartF", CoinToss.defaultBgColor, "FG Start Color", "Set the color for the inner oval at the start of the event."), + new Param("colorEndF", CoinToss.defaultBgColor, "FG End Color", "Set the color for the inner oval at the end of the event."), + new Param("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing for the action.") } },