Skip to content

Instantly share code, notes, and snippets.

@Tesladev2323
Created August 23, 2018 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tesladev2323/c9064f8e7cafce538023d74e9d15a0b7 to your computer and use it in GitHub Desktop.
Save Tesladev2323/c9064f8e7cafce538023d74e9d15a0b7 to your computer and use it in GitHub Desktop.
[End Result] Classic Camera C++ - PlayerCharacter.cpp
// Fill out your copyright notice in the Description page of Project Settings.
#include "PlayerCharacter.h"
#include "Components/InputComponent.h"
#include "GameFramework/CharacterMovementComponent.h"
// Sets default values
APlayerCharacter::APlayerCharacter()
{
// Set this character to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
bUseControllerRotationYaw = false;
GetMesh()->SetRelativeLocation(FVector(0.0f, 0.0f, -90.0f));
GetMesh()->SetRelativeRotation(FRotator(0.0f, -90.0f, 0.0f));
// Set Default Walk Speed
GetCharacterMovement()->MaxWalkSpeed = WalkSpeed;
}
// Called when the game starts or when spawned
void APlayerCharacter::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void APlayerCharacter::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
// Called to bind functionality to input
void APlayerCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
Super::SetupPlayerInputComponent(PlayerInputComponent);
// Bind Axis Events
InputComponent->BindAxis("MoveForward", this, &APlayerCharacter::MoveForward);
InputComponent->BindAxis("Turn", this, &APlayerCharacter::Turn);
// Bind Action Events
InputComponent->BindAction("Sprint", IE_Pressed, this, &APlayerCharacter::StartSprint);
InputComponent->BindAction("Sprint", IE_Released, this, &APlayerCharacter::StopSprint);
}
// Move Forward
void APlayerCharacter::MoveForward(float InputAxis)
{
AddMovementInput(GetActorForwardVector(), InputAxis);
}
// Turn
void APlayerCharacter::Turn(float InputAxis)
{
TurnAmount = InputAxis;
AddActorLocalRotation(FRotator(0.0f, TurnAmount, 0.0f));
}
// Sprinting
void APlayerCharacter::StartSprint()
{
GetCharacterMovement()->MaxWalkSpeed = RunSpeed;
}
void APlayerCharacter::StopSprint()
{
GetCharacterMovement()->MaxWalkSpeed = WalkSpeed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment