Compare commits

..

No commits in common. "68d9fafdf6628dfcba3beff222ff603bb28ebfce" and "264db39cc1652a69cd2c834d0fd6ef8455ff7f2c" have entirely different histories.

15 changed files with 17 additions and 36 deletions

Binary file not shown.

View File

@ -118,9 +118,6 @@ void Ahwanyoung2Character::SetupPlayerInputComponent(class UInputComponent* Play
//Moving //Moving
EnhancedInputComponent->BindAction(MoveAction, ETriggerEvent::Triggered, this, &Ahwanyoung2Character::Move); EnhancedInputComponent->BindAction(MoveAction, ETriggerEvent::Triggered, this, &Ahwanyoung2Character::Move);
//Walking
EnhancedInputComponent->BindAction(WalkAction, ETriggerEvent::Triggered, this, &Ahwanyoung2Character::Move);
//Looking //Looking
EnhancedInputComponent->BindAction(LookAction, ETriggerEvent::Triggered, this, &Ahwanyoung2Character::Look); EnhancedInputComponent->BindAction(LookAction, ETriggerEvent::Triggered, this, &Ahwanyoung2Character::Look);

View File

@ -43,10 +43,6 @@ class Ahwanyoung2Character : public ACharacter
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input, meta = (AllowPrivateAccess = "true")) UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input, meta = (AllowPrivateAccess = "true"))
class UInputAction* LookAction; class UInputAction* LookAction;
/** Walk Input Action */
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input, meta = (AllowPrivateAccess = "true"))
class UInputAction* WalkAction;
#pragma endregion #pragma endregion
private: private: