Resolve WES-181 "Missing code doc"
This commit is contained in:
committed by
Louis Adriaens
parent
7505ae7262
commit
3d99184717
@@ -59,27 +59,27 @@ public class JustSignController : AbstractMinigameController
|
||||
/// <summary>
|
||||
/// Score obtained when getting a perfect hit
|
||||
/// </summary>
|
||||
private int perfectScore = 50;
|
||||
private const int perfectScore = 50;
|
||||
|
||||
/// <summary>
|
||||
/// Score obtained when getting a good hit
|
||||
/// </summary>
|
||||
private int goodScore = 20;
|
||||
private const int goodScore = 20;
|
||||
|
||||
/// <summary>
|
||||
/// Score obtained when getting a meh hit
|
||||
/// </summary>
|
||||
private int mehScore = 10;
|
||||
private const int mehScore = 10;
|
||||
|
||||
/// <summary>
|
||||
/// Score obtained when getting a terrible hit
|
||||
/// </summary>
|
||||
private int terribleScore = -3;
|
||||
private const int terribleScore = -3;
|
||||
|
||||
/// <summary>
|
||||
/// Score obtained when symbol goes offscreen
|
||||
/// </summary>
|
||||
private int offscreenScore = -5;
|
||||
private const int offscreenScore = -5;
|
||||
|
||||
/// <summary>
|
||||
/// Symbol prefab
|
||||
@@ -109,17 +109,17 @@ public class JustSignController : AbstractMinigameController
|
||||
/// <summary>
|
||||
/// Controls movement speed of symbols (higher -> faster)
|
||||
/// </summary>
|
||||
private int moveSpeed = 100;
|
||||
private const int moveSpeed = 100;
|
||||
|
||||
/// <summary>
|
||||
/// Starting X-coordinate of a symbol = (-1920 - symbolsize) / 2
|
||||
/// </summary>
|
||||
private int trackX = 1920 / 2;
|
||||
private const int trackX = 1920 / 2;
|
||||
|
||||
/// <summary>
|
||||
/// Starting Y-coordinate of a symbol
|
||||
/// </summary>
|
||||
private int trackY = 0;
|
||||
private const int trackY = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Time at which the last symbol was spawned
|
||||
@@ -246,6 +246,9 @@ public class JustSignController : AbstractMinigameController
|
||||
/// </summary>
|
||||
public GameObject userFeedback;
|
||||
|
||||
/// <summary>
|
||||
/// Get the current theme
|
||||
/// </summary>
|
||||
protected override Theme signPredictorTheme
|
||||
{
|
||||
get { return currentTheme; }
|
||||
|
||||
Reference in New Issue
Block a user