29 lines
547 B
C++
29 lines
547 B
C++
#include "wave.hpp"
|
|
|
|
|
|
bool Wave::getDirection() const
|
|
{
|
|
return direction;
|
|
}
|
|
|
|
|
|
Wave::Wave(bool dir){
|
|
direction = dir;
|
|
ASSERT(texture.loadFromFile(spriteFile));
|
|
setTexture(texture);
|
|
// sf::IntRect rect = sf::IntRect(0, 0, texture.getSize().x, texture.getSize().y);
|
|
// setTextureRect(rect);
|
|
}
|
|
|
|
void Wave::update(float deltaTime){
|
|
float pos = getPosition().x;
|
|
if (direction){
|
|
pos += 1280*deltaTime; // AMOUNT??
|
|
}
|
|
else{
|
|
pos -= 1280*deltaTime; // ""
|
|
}
|
|
setPosition(pos, getPosition().y);
|
|
}
|
|
|
|
|