Minigames, quest pointer

This commit is contained in:
Oleg Petruny 2025-02-24 00:45:35 +01:00
parent 2d4fd61ea3
commit bfc8efd5fd
59 changed files with 148 additions and 57 deletions

BIN
UnrealProject/Lost_Edge/Content/Blueprints/BP_Pointer.uasset (Stored with Git LFS) 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.

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.

View File

@ -49,6 +49,16 @@ void UCommonFunctions::DestroyActorRecursively(AActor* actor)
actor->Destroy();
}
void UCommonFunctions::SetActorHiddenInGameRecursively(AActor* actor, bool newHidden)
{
TArray<AActor*> childs;
actor->GetAttachedActors(childs, true, true);
for(auto child : childs)
child->SetActorHiddenInGame(newHidden);
actor->SetActorHiddenInGame(newHidden);
}
TArray<int32> UCommonFunctions::GetRandomIntArray(int32 size, int32 min, int32 max)
{
if(size <= 0)

View File

@ -51,6 +51,9 @@ public:
/** Recursively destroy actor and all its childs (the default Destroy doesn't have consistent behavior) */
UFUNCTION(BlueprintCallable, Category = Actor)
static void DestroyActorRecursively(class AActor* actor);
/** Recursively set actor hidden in game and all its childs (the default SetActorHidenInGame() hides only on called actor) */
UFUNCTION(BlueprintCallable, Category = Actor)
static void SetActorHiddenInGameRecursively(AActor* actor, bool newHidden);

View File

@ -220,9 +220,13 @@ void AInteractable::Lock()
for(int32 i = 1; i < 255; i <<= 1)
Deactivate(static_cast<EActivatorType>(i));
activationLockers.Add(nullptr);
for(auto collision : collisions)
collision->SetCollisionProfileName(TEXT("NoCollision"));
}
void AInteractable::Unlock()
{
activationLockers.Empty();
for(auto collision : collisions)
collision->SetCollisionProfileName(collisionProfile);
}

View File

@ -85,7 +85,7 @@ void AAgeOfWarUnit::Tick(float deltaTime)
// try move
FHitResult moveHit;
auto moveStep = GetActorForwardVector() * GetStats().moveSpeed;
auto moveStep = GetActorForwardVector() * GetStats().moveSpeed * GetActorScale3D().X;
this->AddActorWorldOffset(moveStep, true, &moveHit, ETeleportType::None);
if(moveHit.bBlockingHit)
allyblocker->SetCollisionEnabled(ECollisionEnabled::QueryOnly);
@ -95,7 +95,7 @@ void AAgeOfWarUnit::Tick(float deltaTime)
// look for units forward
FHitResult hit;
auto startLocation = traceStart->GetComponentLocation();
auto endLocation = startLocation + (GetActorRotation().Vector() * attackStartRange * (moveHit.bBlockingHit ? 5 : 1));
auto endLocation = startLocation + (GetActorRotation().Vector() * attackStartRange * GetActorScale3D().X * (moveHit.bBlockingHit ? 5 : 1));
world->LineTraceSingleByChannel(
hit,
startLocation,

View File

@ -16,11 +16,17 @@ struct FPlayerLock
{
GENERATED_BODY()
UPROPERTY(BlueprintReadWrite)
uint8 walk : 1;
UPROPERTY(BlueprintReadWrite)
uint8 jump : 1;
UPROPERTY(BlueprintReadWrite)
uint8 run : 1;
UPROPERTY(BlueprintReadWrite)
uint8 interaction : 1;
UPROPERTY(BlueprintReadWrite)
uint8 camera : 1;
UPROPERTY(BlueprintReadWrite)
uint8 inventory : 1;
static FPlayerLock All();
@ -51,7 +57,9 @@ public:
UFUNCTION(BlueprintPure)
FVector GetCameraDirection();
UFUNCTION(BlueprintCallable)
void LockPlayer(const FPlayerLock lock);
UFUNCTION(BlueprintCallable)
void UnlockPlayer(const FPlayerLock lock);
/** Force interactable activators reset */