credits, musique, biere, champignon

This commit is contained in:
keb
2018-01-09 00:28:46 +01:00
parent 390daa2fa5
commit 521976e957
26 changed files with 15 additions and 3 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+15 -3
View File
@@ -14,12 +14,24 @@ class ACarwatchHUD : public AHUD
public:
ACarwatchHUD();
/** Primary draw call for the HUD */
virtual void DrawHUD() override;
private:
/** Crosshair asset pointer */
class UTexture2D* CrosshairTex;
float timeCredits = 0;
float offsetCredits = 0;
UFont* font0;
UFont* font4;
UFont* font9;
void Tick(float DeltaTime) override;
void Credits();
void DrawTextCredits(int type, FText text, float offset);
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "yo")
bool _credits = false;
};