mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
PSP: Implement horizontal shake
This commit is contained in:
parent
336a79f078
commit
ba2923aa0c
@ -370,8 +370,12 @@ void OSystem_3DS::setShakePos(int shakeXOffset, int shakeYOffset) {
|
||||
// TODO: implement this in overlay, top screen, and mouse too
|
||||
_screenShakeXOffset = shakeXOffset;
|
||||
_screenShakeYOffset = shakeYOffset;
|
||||
_gameTopTexture.setPosition(_gameTopX, _gameTopY + _gameTopTexture.getScaleY() * shakeYOffset);
|
||||
_gameBottomTexture.setPosition(_gameBottomX, _gameBottomY + _gameBottomTexture.getScaleY() * shakeYOffset);
|
||||
int topX = _gameTopX + (_gameTopTexture.getScaleX() * shakeXOffset);
|
||||
int topY = _gameTopY + (_gameTopTexture.getScaleY() * shakeYOffset);
|
||||
_gameTopTexture.setPosition(topX, topY);
|
||||
int bottomX = _gameBottomX + (_gameBottomTexture.getScaleX() * shakeXOffset);
|
||||
int bottomY = _gameBottomY + (_gameBottomTexture.getScaleY() * shakeYOffset);
|
||||
_gameBottomTexture.setPosition(bottomX, bottomY);
|
||||
}
|
||||
|
||||
void OSystem_3DS::setFocusRectangle(const Common::Rect &rect) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user