added fling and animated zoom

- besides other stuff
This commit is contained in:
Hannes Janetzek
2013-06-28 04:26:37 +02:00
parent a018ccc851
commit 0c0b376c1e
2 changed files with 304 additions and 72 deletions

View File

@@ -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);
}
}