Added Dialouge box for Shop

This commit is contained in:
MH261677 2022-11-11 23:33:37 +00:00
parent f632a010a4
commit cdab08dcdf
5 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1ef2465e4c7f6a5910df3ec5a3923c9a0f80eb17ddb1411de806275274b50ba1
size 24707
oid sha256:ec29ba0db3dfe4058261d9534947c299b31f5b36d3a91ddfdd70f1606afd1b3d
size 23329

Binary file not shown.

BIN
Content/Merchant/BP_OPENDIAL.uasset (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -75,4 +75,7 @@ void ATempCharacter::LineTraceLogic()
UE_LOG(LogTemp, Display, TEXT("HIT: %s"), *OutHit.GetActor()->GetName());
}
}
}

View File

@ -22,6 +22,8 @@ protected:
void ForwardInput(float Axis);
void RightMoveInput(float Axis);
TSubclassOf<UUserWidget> WidgetClass; //defining the widget class
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
@ -35,5 +37,4 @@ public:
float TraceDistance = 200;
void LineTraceLogic();
};