File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -92,32 +92,35 @@ class FocusCameraSongEvent extends SongEvent
92
92
trace (' No BF to focus on.' );
93
93
return ;
94
94
}
95
- // trace('Focusing camera on player.');
95
+ trace (' Focusing camera on player. ' );
96
96
var bfPoint = currentStage .getBoyfriend ().cameraFocusPoint ;
97
97
targetX + = bfPoint .x ;
98
98
targetY + = bfPoint .y ;
99
+ trace (' bf x - $targetX | ' + ' y - $targetY ' );
99
100
100
101
case 1 : // Dad (focus on opponent)
101
102
if (currentStage .getDad () == null )
102
103
{
103
104
trace (' No dad to focus on.' );
104
105
return ;
105
106
}
106
- // trace('Focusing camera on opponent.');
107
+ trace (' Focusing camera on opponent.' );
107
108
var dadPoint = currentStage .getDad ().cameraFocusPoint ;
108
109
targetX + = dadPoint .x ;
109
110
targetY + = dadPoint .y ;
111
+ trace (' dad x - $targetX | ' + ' y - $targetY ' );
110
112
111
113
case 2 : // Girlfriend (focus on girlfriend)
112
114
if (currentStage .getGirlfriend () == null )
113
115
{
114
116
trace (' No GF to focus on.' );
115
117
return ;
116
118
}
117
- // trace('Focusing camera on girlfriend.');
119
+ trace (' Focusing camera on girlfriend.' );
118
120
var gfPoint = currentStage .getGirlfriend ().cameraFocusPoint ;
119
121
targetX + = gfPoint .x ;
120
122
targetY + = gfPoint .y ;
123
+ trace (' gf x - $targetX | ' + ' y - $targetY ' );
121
124
122
125
default :
123
126
trace (' Unknown camera focus: ' + data );
You can’t perform that action at this time.
0 commit comments