Basic Movement Input

This commit is contained in:
2024-11-17 19:58:41 -04:00
parent ef69611071
commit 95b4ae5cfb
4 changed files with 28 additions and 0 deletions

BIN
Content/Blueprints/Input/IMC_AuraContext.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Blueprints/Input/InputActions/IA_Move.uasset (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,5 @@
// Assets provided by DruidMechanics. Copyright Jonathan Rampersad 2024
#include "Player/AuraPlayerController.h"

View File

@ -0,0 +1,17 @@
// Assets provided by DruidMechanics. Copyright Jonathan Rampersad 2024
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "AuraPlayerController.generated.h"
/**
*
*/
UCLASS()
class AURA_API AAuraPlayerController : public APlayerController
{
GENERATED_BODY()
};