hermet pushed a commit to branch master.

http://git.enlightenment.org/games/etypers.git/commit/?id=377878169f9a7954401da8d6293303b94c7b6cfb

commit 377878169f9a7954401da8d6293303b94c7b6cfb
Author: Hermet Park <her...@hermet.pe.kr>
Date:   Fri Feb 12 02:16:52 2016 +0900

    adjust drop speed.
    
    i hope this is last change today.
---
 src/bin/etypers.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/etypers.c b/src/bin/etypers.c
index a0a436c..7a1ba4a 100644
--- a/src/bin/etypers.c
+++ b/src/bin/etypers.c
@@ -4,7 +4,7 @@
 #define DEFAULT_WIN_H 600
 #define NEW_ENEMY_DURATION_SEC 5
 #define LEVEL_INC_WEIGHT 0.01
-#define DROP_DIST_WEIGHT 50
+#define DROP_DIST_WEIGHT 25
 #define DEFENSE_WALL_CNT 15
 #define WALL_COLOR 100, 100, 100, 170
 #define MINUS_SCORE 25
@@ -280,7 +280,7 @@ _animator_cb(void *data)
    Enemy *enemy;
    Eina_Inlist *l;
    float drop_dist = (float) ((current_time - appdata->last_frame_time) *
-                              DROP_DIST_WEIGHT) + (appdata->level * 0.095);
+                              DROP_DIST_WEIGHT) + (appdata->level * 0.2);
 
    EINA_INLIST_FOREACH_SAFE(appdata->enemies, l, enemy)
      {

-- 


Reply via email to