File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,15 @@ class FailSkip : MonoBehaviour
28
28
29
29
public void Awake ( )
30
30
{
31
- Logger . log . Debug ( "awaken" ) ;
32
31
_standardLevelGameplayManager = Resources . FindObjectsOfTypeAll < StandardLevelGameplayManager > ( ) . FirstOrDefault ( ) ;
33
32
// Use the appropriate level failed event
34
33
if ( _standardLevelGameplayManager )
35
34
{
36
- Logger . log . Debug ( "Standard" ) ;
37
35
_standardLevelGameplayManager . levelFailedEvent += this . OnLevelFail ;
38
36
_standardLevel = true ;
39
37
}
40
38
else
41
39
{
42
- Logger . log . Debug ( "Mission" ) ;
43
40
_missionLevelGameplayManager = Resources . FindObjectsOfTypeAll < MissionLevelGameplayManager > ( ) . FirstOrDefault ( ) ;
44
41
_missionLevelGameplayManager . levelFailedEvent += this . OnLevelFail ;
45
42
_standardLevel = false ;
@@ -73,8 +70,6 @@ public void OnLevelFail()
73
70
74
71
public void Update ( )
75
72
{
76
- if ( _vrControllersInputManager . MenuButtonDown ( ) )
77
- Logger . log . Debug ( "Menu down" ) ;
78
73
if ( _hasFailed && ( Configuration . Instance . autoSkip || _vrControllersInputManager . MenuButtonDown ( ) ) && ! _skipped )
79
74
{
80
75
// Stop the base coroutine and call the necessary functions to fail the level as quickly as possible
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ public bool enabled
10
10
get => Configuration . Instance . enabled ;
11
11
set
12
12
{
13
- Logger . log . Debug ( $ "{ value } ") ;
14
13
Configuration . Instance . enabled = value ;
15
14
}
16
15
}
You can’t perform that action at this time.
0 commit comments