Skip to content

Commit

Permalink
Address warning about unassigned variable
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardrowe committed Jun 28, 2020
1 parent b0b6db8 commit 20cbfba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/RedBlueGames/TextTyper/Animation/TextAnimation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public abstract class TextAnimation : MonoBehaviour

[Tooltip("If true, animation will begin playing immediately on Awake")]
[SerializeField]
private bool playOnAwake;
private bool playOnAwake = false;

/// <summary>
/// Determines how often Animate() will be called
Expand Down

0 comments on commit 20cbfba

Please sign in to comment.