Added FirstPersonArm from Unreal FPS template. Modified ShootingComponent for using socket in character.
19 lines
273 B
C++
19 lines
273 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "Characters/ExoCharacterBase.h"
|
|
|
|
AExoCharacterBase::AExoCharacterBase()
|
|
{
|
|
PrimaryActorTick.bCanEverTick = false;
|
|
}
|
|
|
|
void AExoCharacterBase::BeginPlay()
|
|
{
|
|
Super::BeginPlay();
|
|
|
|
}
|
|
|
|
|
|
|