more transparant trail and faster keydelay

This commit is contained in:
yugecin 2017-03-30 00:19:32 +02:00
parent 9df139bded
commit 5f334ca4cb
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ public class Cursor {
cursorTrail.startUse();
for (Point p : trail) {
alpha += t;
cursorTrail.setImageColor(filter.r, filter.g, filter.b, alpha * 0.2f);
cursorTrail.setImageColor(filter.r, filter.g, filter.b, alpha * 0.12f);
cursorTrail.drawEmbedded(
p.x - (cursorTrailWidth / 2f), p.y - (cursorTrailHeight / 2f),
cursorTrailWidth, cursorTrailHeight, cursorTrailRotation);

View File

@ -126,7 +126,7 @@ public class ReplayPlayback {
private void processKeys() {
int keys = currentFrame.getKeys();
int KEY_DELAY = 50;
int KEY_DELAY = 10;
if ((keys & 5) == 5) {
keydelay[0] = KEY_DELAY;
}