Lots of tweaking. Tenative buggy reflection implimented.

This commit is contained in:
MitchellHansen
2017-04-13 03:41:05 -07:00
parent 2421f7bdce
commit 8806777dc9
8 changed files with 139 additions and 49 deletions

View File

@@ -201,3 +201,11 @@ sf::Vector3f Camera::get_position() {
sf::Vector2f Camera::get_direction() {
return direction;
}
void Camera::setSpeed(float speed) {
default_impulse = speed;;
}
float Camera::getSpeed() {
return default_impulse;
}