removed unused methods(BeginPlay, Tick) and added rider plugin

This commit is contained in:
Caleb Buhungiro
2025-07-05 15:04:21 +08:00
parent a98fd4b2a7
commit 58a7fc2f55
416 changed files with 64917 additions and 16 deletions

View File

@@ -44,16 +44,6 @@ void ACPlayerCharacter::PawnClientRestart()
}
}
void ACPlayerCharacter::BeginPlay()
{
Super::BeginPlay();
}
void ACPlayerCharacter::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
void ACPlayerCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
Super::SetupPlayerInputComponent(PlayerInputComponent);

View File

@@ -21,11 +21,7 @@ public:
ACPlayerCharacter();
virtual void PawnClientRestart() override;
protected:
virtual void BeginPlay() override;
public:
virtual void Tick(float DeltaTime) override;
virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;
private: