Jb win a0478a75b3 FT - PilotComponent to drive so100
+ Base class for RobotPawn -> might be replaced by an Actor instead?
2025-04-30 21:47:07 +07:00

23 lines
540 B
C++

#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);
}