Compare commits

...

3 Commits

Author SHA1 Message Date
baz 98cadd5952 Make FUNCTIONS in LevelManager BlueprintCallable 2024-04-19 19:30:18 +01:00
baz 2d1523241d StorageRack updates 2024-04-19 19:29:27 +01:00
baz cacef673fe Add LampFixture assets 2024-04-19 19:29:07 +01:00
4 changed files with 13 additions and 7 deletions

BIN
Content/Assets/Lampfixtures/M_Lightbulb.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Assets/Lampfixtures/lightfixture.uasset (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

View File

@ -22,19 +22,19 @@ private:
int CollectedLevelKeys = 0;
public:
UFUNCTION()
UFUNCTION(BlueprintCallable)
void LoadNextLevel(TSoftObjectPtr<UWorld> NextLevel);
UFUNCTION()
UFUNCTION(BlueprintCallable)
void IncrementInitialLevelKeys();
UFUNCTION()
UFUNCTION(BlueprintCallable)
void IncrementCollectedLevelKeys();
UFUNCTION()
UFUNCTION(BlueprintCallable)
int GetInitialLevelKeysCount();
UFUNCTION()
UFUNCTION(BlueprintCallable)
int GetCollectedLevelKeysCount();
private: