FT - PilotComponent to drive so100

+ Base class for RobotPawn -> might be replaced by an Actor instead?
This commit is contained in:
Jb win
2025-04-30 21:28:42 +07:00
parent 470cac8f6a
commit c6f63317b6
9 changed files with 282 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#include "Robot/PilotComponent/RobotPilotSO100Component.h"
URobotPilotSO100Component::URobotPilotSO100Component()
{
}
void URobotPilotSO100Component::BeginPlay()
{
Super::BeginPlay();
}
void URobotPilotSO100Component::TickComponent(float DeltaTime, enum ELevelTick TickType,
FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
}
void URobotPilotSO100Component::StartAnimation(const FRobotActuators& NewAnimationTarget)
{
// Super::StartAnimation(NewAnimationTarget);
}