You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
648 B
C++
31 lines
648 B
C++
#ifndef VIEWOVERSHOULDER_H
|
|
#define VIEWOVERSHOULDER_H
|
|
|
|
#include "camera.hpp"
|
|
|
|
namespace MWRender
|
|
{
|
|
|
|
class ViewOverShoulderController
|
|
{
|
|
public:
|
|
ViewOverShoulderController(Camera* camera);
|
|
|
|
void update();
|
|
|
|
private:
|
|
void trySwitchShoulder();
|
|
enum class Mode { RightShoulder, LeftShoulder, Combat, Swimming };
|
|
|
|
Camera* mCamera;
|
|
Mode mMode;
|
|
bool mAutoSwitchShoulder;
|
|
float mOverShoulderHorizontalOffset;
|
|
float mOverShoulderVerticalOffset;
|
|
bool mDefaultShoulderIsRight;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // VIEWOVERSHOULDER_H
|