1
0

credits, musique, biere, champignon

This commit is contained in:
ZetaKebab 2018-01-09 00:28:46 +01:00
parent 390daa2fa5
commit 521976e957
26 changed files with 15 additions and 3 deletions

BIN
Content/Biere/Biere.uasset Normal file

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.

BIN
Content/Pickup.uasset Normal file

Binary file not shown.

Binary file not shown.

View File

@ -14,12 +14,24 @@ class ACarwatchHUD : public AHUD
public: public:
ACarwatchHUD(); ACarwatchHUD();
/** Primary draw call for the HUD */
virtual void DrawHUD() override; virtual void DrawHUD() override;
private:
/** Crosshair asset pointer */
class UTexture2D* CrosshairTex; 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;
}; };