File tree Expand file tree Collapse file tree 3 files changed +1
-12
lines changed Expand file tree Collapse file tree 3 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -340,7 +340,6 @@ public void onTapCommand(
340
340
@ Override
341
341
public void onTouchEvent (MotionEvent event ) {
342
342
super .onTouchEvent (event );
343
- PApplet .println ("touch even:" + event .toString ());
344
343
if (sketch != null ) sketch .surfaceTouchEvent (event );
345
344
}
346
345
Original file line number Diff line number Diff line change @@ -334,7 +334,6 @@ public void onTapCommand(
334
334
@ Override
335
335
public void onTouchEvent (MotionEvent event ) {
336
336
super .onTouchEvent (event );
337
- PApplet .println ("touch even:" + event .toString ());
338
337
if (sketch != null ) sketch .surfaceTouchEvent (event );
339
338
}
340
339
Original file line number Diff line number Diff line change @@ -195,18 +195,9 @@ public void surfaceDestroyed(SurfaceHolder holder) {
195
195
public void onWindowFocusChanged (boolean hasFocus ) {
196
196
super .onWindowFocusChanged (hasFocus );
197
197
sketch .surfaceWindowFocusChanged (hasFocus );
198
- // super.onWindowFocusChanged(hasFocus);
199
- // focused = hasFocus;
200
- // if (focused) {
201
- //// println("got focus");
202
- // focusGained();
203
- // } else {
204
- //// println("lost focus");
205
- // focusLost();
206
- // }
207
198
}
208
199
209
- // Do we need these to catpure events...?
200
+ // Do we need these to capture events...?
210
201
@ Override
211
202
public boolean onTouchEvent (MotionEvent event ) {
212
203
boolean fullscreen = sketch .width == sketch .displayWidth &&
You can’t perform that action at this time.
0 commit comments