diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:18:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:18:58 +0300 |
commit | da73354d0c3d9cf8507fe9d88a5e778fdbb7fa44 (patch) | |
tree | d05a33c0a234c4a9386639bf742239f3cedd50d6 /src/resources/ambientlayer.cpp | |
parent | 41b8151a3f04bc1cb0127bdf5c10e0dd8275bad5 (diff) | |
download | plus-da73354d0c3d9cf8507fe9d88a5e778fdbb7fa44.tar.gz plus-da73354d0c3d9cf8507fe9d88a5e778fdbb7fa44.tar.bz2 plus-da73354d0c3d9cf8507fe9d88a5e778fdbb7fa44.tar.xz plus-da73354d0c3d9cf8507fe9d88a5e778fdbb7fa44.zip |
add new parallax attributes.
Old attribute: parallax
New attributes: parallaxX, parallaxY
Before parallax was used for x and y.
If parallaxX or parallaxY missing can be used parallax.
Diffstat (limited to 'src/resources/ambientlayer.cpp')
-rw-r--r-- | src/resources/ambientlayer.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/resources/ambientlayer.cpp b/src/resources/ambientlayer.cpp index 361b2e391..b74ba96db 100644 --- a/src/resources/ambientlayer.cpp +++ b/src/resources/ambientlayer.cpp @@ -31,11 +31,13 @@ #include "debug.h" -AmbientLayer::AmbientLayer(Image *const img, const float parallax, +AmbientLayer::AmbientLayer(Image *const img, + const float parallaxX, const float parallaxY, const float speedX, const float speedY, const bool keepRatio, const int mask) : mImage(img), - mParallax(parallax), + mParallaxX(parallaxX), + mParallaxY(parallaxY), mPosX(0), mPosY(0), mSpeedX(speedX), @@ -90,8 +92,8 @@ void AmbientLayer::update(const int timePassed, const float dx, const float dy) mPosY -= mSpeedY * time; // Parallax scrolling - mPosX += dx * mParallax; - mPosY += dy * mParallax; + mPosX += dx * mParallaxX; + mPosY += dy * mParallaxY; const SDL_Rect &rect = mImage->mBounds; const float imgW = rect.w; |