diff --git a/source/item.cpp b/source/item.cpp index 473ae72..85dc016 100644 --- a/source/item.cpp +++ b/source/item.cpp @@ -92,7 +92,7 @@ void Item::init(Uint8 value, float x, float y, LTexture *texture, SDL_Renderer * mPosY = PLAY_AREA_TOP - mHeight; mVelX = 0.0f; mVelY = -0.1f; - mAccelY = 0.15f; + mAccelY = 0.1f; mSprite->setAnimationNumFrames(0, 4); mSprite->setAnimationFrames(0, 0, 32 * 0, 16 * 2, mWidth, mHeight); mSprite->setAnimationFrames(0, 1, 32 * 1, 16 * 2, mWidth, mHeight); @@ -101,7 +101,7 @@ void Item::init(Uint8 value, float x, float y, LTexture *texture, SDL_Renderer * //mSprite->setSpriteClip(mSprite->getAnimationClip(0, 0)); mSprite->setPosX(mPosX); mSprite->setPosY(mPosY); - mCollider.r = mWidth / 2; + mCollider.r = 10; shiftColliders(); break;