From 2dca93d13705ddabfb198680039b839ae15852d8 Mon Sep 17 00:00:00 2001 From: nathansmithsmith <nathansmith7@mailfence.com> Date: Fri, 22 Sep 2023 20:09:37 -0600 Subject: Forgot some filees for the last commit --- src/gyroscope.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/gyroscope.h (limited to 'src/gyroscope.h') diff --git a/src/gyroscope.h b/src/gyroscope.h new file mode 100644 index 0000000..c8156cc --- /dev/null +++ b/src/gyroscope.h @@ -0,0 +1,23 @@ +#include "gameCommon.h" + +#ifndef GYROSCOPE_H +#define GYROSCOPE_H + +#define GYROSCOPE_LINE_THICKNESS 2.0 +#define GYROSCOPE_TEXTURE_SIZE 80 + +// The gyroscope is rended in 3d but not in the main scene. +// We use a render texture to get the gyroscope render onto the screen. +typedef struct Gyroscope { + Vector2 position; + Camera3D camera; + RenderTexture texture; +} Gyroscope; + +void initGyroscope(Gyroscope * gyroscope); +void closeGyroscope(Gyroscope * gyroscope); + +void resetGyroscopePosition(Gyroscope * gyroscope); +void drawGyroscope(Game * game, Gyroscope * gyroscope); + +#endif -- cgit v1.2.3