Photo mode init

This commit is contained in:
Oleg Petruny 2024-12-03 08:10:04 +01:00
parent aa85f56a4c
commit 388c2ef945
30 changed files with 78 additions and 51 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -24,10 +24,6 @@ void ACameraModeBase::BeginPlay()
Super::BeginPlay();
auto world = GetWorld();
//GetMovementComponent()->speed
// GetCharacterMovement()->MaxWalkSpeed = moveSpeed;
auto gameSettings = UCustomGameUserSettings::GetCustomGameUserSettings();
if(auto camera = FindComponentByClass<UCameraComponent>())
@ -39,13 +35,11 @@ void ACameraModeBase::BeginPlay()
{
if(auto inputSubsystem = ULocalPlayer::GetSubsystem<UEnhancedInputLocalPlayerSubsystem>(PC->GetLocalPlayer()))
{
if(auto GI = Cast<UCustomGameInstanceBase>(GetWorld()->GetGameInstance()))
if(auto GI = UCustomGameInstanceBase::GetGameInstance())
{
inputSubsystem->ClearAllMappings();
for(auto& inputContext : GI->inputContexts)
{
inputSubsystem->AddMappingContext(inputContext.LoadSynchronous(), 0);
}
for(auto& context : inputContexts)
inputSubsystem->AddMappingContext(context.LoadSynchronous(), 0);
}
}
}

View File

@ -33,4 +33,7 @@ protected:
float moveSpeed = 200;
UPROPERTY(EditDefaultsOnly)
float runSpeedMultiplier = 4;
UPROPERTY(EditDefaultsOnly)
TArray<TSoftObjectPtr<class UInputMappingContext>> inputContexts;
};

View File

@ -13,8 +13,8 @@ class UInteractableHintWidget : public UResolutionResponsiveUserWidget, public I
GENERATED_BODY()
public:
UPROPERTY(meta = (BindWidget))
UPROPERTY(BlueprintReadWrite, meta = (BindWidget))
class UTextBlock* keyText;
UPROPERTY(meta = (BindWidget))
UPROPERTY(BlueprintReadWrite, meta = (BindWidget))
class UTextBlock* descriptionText;
};

View File

@ -0,0 +1,5 @@
// Oleg Petruny proprietary.
#include "PhotoModeWidget.h"

View File

@ -0,0 +1,22 @@
// Oleg Petruny proprietary.
#pragma once
#include "Blueprint/UserWidget.h"
#include "PhotoModeWidget.generated.h"
UCLASS(Blueprintable, Abstract)
class UPhotoModeWidget : public UUserWidget
{
GENERATED_BODY()
public:
// hints
UPROPERTY(meta = (BindWidget))
class UInteractableHintWidget* move;
UPROPERTY(meta = (BindWidget))
class UInteractableHintWidget* rotate;
UPROPERTY(meta = (BindWidget))
class UInteractableHintWidget* distace;
};

View File

@ -10,6 +10,8 @@
void UQuickTimeEventWidget::NativeConstruct()
{
Super::NativeConstruct();
FWidgetAnimationDynamicEvent onTimerFinish;
onTimerFinish.BindDynamic(this, &UQuickTimeEventWidget::RemoveEvent);
BindToAnimationFinished(eventAnimation, onTimerFinish);
@ -17,8 +19,6 @@ void UQuickTimeEventWidget::NativeConstruct()
FWidgetAnimationDynamicEvent onRemove;
onRemove.BindDynamic(this, &UQuickTimeEventWidget::RemoveFromManager);
BindToAnimationFinished(removeAnimation, onRemove);
return Super::NativeConstruct();
}
void UQuickTimeEventWidget::Show()