From 7a49a1db8cce520e2c10bb013a10d338264a580a Mon Sep 17 00:00:00 2001 From: Treeki Date: Thu, 9 May 2013 10:13:37 +0200 Subject: shyguy anim fixes --- src/shyguy.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shyguy.cpp b/src/shyguy.cpp index 192ac7d..ae1bc03 100644 --- a/src/shyguy.cpp +++ b/src/shyguy.cpp @@ -780,6 +780,7 @@ void daShyGuy::updateModelMatrices() { this->x_speed_inc = 0.0; } void daShyGuy::executeState_Walk() { + chrAnimation.setUpdateRate(1.5f); this->pos.x += (direction) ? -0.4 : 0.4; @@ -1205,6 +1206,7 @@ void daShyGuy::updateModelMatrices() { this->y_speed_inc = -0.1875; } void daShyGuy::executeState_RealWalk() { + chrAnimation.setUpdateRate(1.5f); bool ret = calculateTileCollisions(); if (ret) { -- cgit v1.2.3 From 00296013260a730e8c24ca53a6e3a3e0a1e49131 Mon Sep 17 00:00:00 2001 From: Treeki Date: Thu, 9 May 2013 10:13:45 +0200 Subject: nuked sky city launch star --- src/koopatlas/map.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/koopatlas/map.cpp b/src/koopatlas/map.cpp index 84c7c45..865bfa5 100644 --- a/src/koopatlas/map.cpp +++ b/src/koopatlas/map.cpp @@ -72,8 +72,8 @@ int dWMMap_c::onCreate() { switch (dScKoopatlas_c::instance->currentMapID) { case 5: // Starry Sky launchStarX = 5424.0f; launchStarY = -4416.0f; showLaunchStar = true; break; - case 11: // Sky City - launchStarX = 3216.0f; launchStarY = -3120.0f; showLaunchStar = true; break; + // case 11: // Sky City + // launchStarX = 3216.0f; launchStarY = -3120.0f; showLaunchStar = true; break; case 6: // Planet Koopa lsRotate = true; launchStarX = 2268.0f; launchStarY = -3420.0f; showLaunchStar = true; break; -- cgit v1.2.3