added fling and animated zoom
- besides other stuff
This commit is contained in:
@@ -2,33 +2,27 @@ package org.oscim.gdx;
|
||||
|
||||
import org.oscim.backend.Log.Logger;
|
||||
|
||||
import com.badlogic.gdx.Gdx;
|
||||
|
||||
public class GdxLog implements Logger {
|
||||
|
||||
@Override
|
||||
public void d(String tag, String msg) {
|
||||
//Gdx.app.log(tag, msg);
|
||||
System.err.println(msg);
|
||||
Gdx.app.debug(tag, msg);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void w(String tag, String msg) {
|
||||
//Gdx.app.log(tag, msg);
|
||||
System.err.println(msg);
|
||||
|
||||
Gdx.app.log(tag, msg);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void e(String tag, String msg) {
|
||||
//Gdx.app.log(tag, msg);
|
||||
System.err.println(msg);
|
||||
|
||||
Gdx.app.error(tag, msg);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void i(String tag, String msg) {
|
||||
//Gdx.app.log(tag, msg);
|
||||
System.err.println(msg);
|
||||
|
||||
Gdx.app.log(tag, msg);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user