commit
73fb958f07
Binary file not shown.
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "LuckyrobotsGameInstance.h"
|
||||
#include "LuckyRobotsGameInstance.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "LuckyrobotsGameMode.h"
|
||||
#include "LuckyRobotsGameMode.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "LuckyrobotsGameState.h"
|
||||
#include "LuckyRobotsGameState.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "LuckyrobotsPlayerController.h"
|
||||
#include "LuckyRobotsPlayerController.h"
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
#include "MainScreenUserWidget.h"
|
||||
#include "Engine/DataTable.h"
|
||||
#include "LuckyrobotsGameInstance.h"
|
||||
#include "LuckyRobotsGameInstance.h"
|
||||
|
||||
void UMainScreenUserWidget::NativeConstruct()
|
||||
{
|
||||
@ -17,13 +17,13 @@ void UMainScreenUserWidget::InitData()
|
||||
InitRobotData();
|
||||
InitLevelData();
|
||||
|
||||
ULuckyrobotsGameInstance* LuckyrobotsGameInstance = Cast<ULuckyrobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyrobotsGameInstance)
|
||||
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyRobotsGameInstance)
|
||||
{
|
||||
UEnum* QualityEnum = StaticEnum<EQualityEnum>();
|
||||
for (int32 i = 0; i < QualityEnum->NumEnums() - 1; i++)
|
||||
{
|
||||
if (EQualityEnum(QualityEnum->GetValueByIndex(i)) == LuckyrobotsGameInstance->CurrentSelectQuality)
|
||||
if (EQualityEnum(QualityEnum->GetValueByIndex(i)) == LuckyRobotsGameInstance->CurrentSelectQuality)
|
||||
{
|
||||
iCurrentSelectRobot = i;
|
||||
break;
|
||||
@ -174,31 +174,31 @@ void UMainScreenUserWidget::SelectPreviousQuality()
|
||||
|
||||
void UMainScreenUserWidget::UpdateSelectRobot()
|
||||
{
|
||||
ULuckyrobotsGameInstance* LuckyrobotsGameInstance = Cast<ULuckyrobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyrobotsGameInstance)
|
||||
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyRobotsGameInstance)
|
||||
{
|
||||
LuckyrobotsGameInstance->CurrentSelectRobot = GetCurrentRobotData().Name;
|
||||
LuckyRobotsGameInstance->CurrentSelectRobot = GetCurrentRobotData().Name;
|
||||
}
|
||||
BPUpdateSelectRobot();
|
||||
InitLevelData();
|
||||
}
|
||||
void UMainScreenUserWidget::UpdateSelectLevel()
|
||||
{
|
||||
ULuckyrobotsGameInstance* LuckyrobotsGameInstance = Cast<ULuckyrobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyrobotsGameInstance)
|
||||
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyRobotsGameInstance)
|
||||
{
|
||||
LuckyrobotsGameInstance->CurrentSelectLevel = GetCurrentLevelData().LevelEnum;
|
||||
LuckyRobotsGameInstance->CurrentSelectLevel = GetCurrentLevelData().LevelEnum;
|
||||
}
|
||||
BPUpdateSelectLevel();
|
||||
}
|
||||
|
||||
void UMainScreenUserWidget::UpdateSelectQuality()
|
||||
{
|
||||
ULuckyrobotsGameInstance* LuckyrobotsGameInstance = Cast<ULuckyrobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyrobotsGameInstance)
|
||||
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
||||
if (LuckyRobotsGameInstance)
|
||||
{
|
||||
UEnum* QualityEnum = StaticEnum<EQualityEnum>();
|
||||
LuckyrobotsGameInstance->CurrentSelectQuality = EQualityEnum(QualityEnum->GetValueByIndex(iCurrentSelectQuality));
|
||||
LuckyRobotsGameInstance->CurrentSelectQuality = EQualityEnum(QualityEnum->GetValueByIndex(iCurrentSelectQuality));
|
||||
}
|
||||
BPUpdateSelectQuality();
|
||||
}
|
@ -5,13 +5,13 @@
|
||||
#include "CoreMinimal.h"
|
||||
#include "Engine/GameInstance.h"
|
||||
#include "SharedDef.h"
|
||||
#include "LuckyrobotsGameInstance.generated.h"
|
||||
#include "LuckyRobotsGameInstance.generated.h"
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
UCLASS()
|
||||
class LUCKYROBOTS_API ULuckyrobotsGameInstance : public UGameInstance
|
||||
class LUCKYROBOTS_API ULuckyRobotsGameInstance : public UGameInstance
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
@ -4,13 +4,13 @@
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "GameFramework/GameModeBase.h"
|
||||
#include "LuckyrobotsGameMode.generated.h"
|
||||
#include "LuckyRobotsGameMode.generated.h"
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
UCLASS()
|
||||
class LUCKYROBOTS_API ALuckyrobotsGameMode : public AGameModeBase
|
||||
class LUCKYROBOTS_API ALuckyRobotsGameMode : public AGameModeBase
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
@ -4,13 +4,13 @@
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "GameFramework/GameStateBase.h"
|
||||
#include "LuckyrobotsGameState.generated.h"
|
||||
#include "LuckyRobotsGameState.generated.h"
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
UCLASS()
|
||||
class LUCKYROBOTS_API ALuckyrobotsGameState : public AGameStateBase
|
||||
class LUCKYROBOTS_API ALuckyRobotsGameState : public AGameStateBase
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
@ -4,13 +4,13 @@
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "GameFramework/PlayerController.h"
|
||||
#include "LuckyrobotsPlayerController.generated.h"
|
||||
#include "LuckyRobotsPlayerController.generated.h"
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
UCLASS()
|
||||
class LUCKYROBOTS_API ALuckyrobotsPlayerController : public APlayerController
|
||||
class LUCKYROBOTS_API ALuckyRobotsPlayerController : public APlayerController
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
@ -113,7 +113,7 @@ public:
|
||||
|
||||
|
||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
||||
FString LevelName;
|
||||
TSoftObjectPtr<UWorld> LevelObject;
|
||||
|
||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
||||
UTexture2D* LevelImage;
|
||||
|
Loading…
x
Reference in New Issue
Block a user