Skip to content

Commit

Permalink
Make skip intro hold timer private
Browse files Browse the repository at this point in the history
  • Loading branch information
Max-Lovell committed Nov 12, 2024
1 parent fc2d411 commit 0b6b7ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/Introduction/skipIntro.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class skipIntro : MonoBehaviour
{
public Stopwatch spacebarHoldTimer = new Stopwatch(); // High precision timer: https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.stopwatch?view=net-8.0&redirectedfrom=MSDN#remarks
Stopwatch spacebarHoldTimer = new Stopwatch(); // High precision timer: https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.stopwatch?view=net-8.0&redirectedfrom=MSDN#remarks
public double timeToSkip = 2.0;
public Slider slider;

Expand Down

0 comments on commit 0b6b7ee

Please sign in to comment.