Files
LuckyWorld/Source/LuckyWorldV2/Private/Robot/PilotComponent/RobotPilotSO100Component.cpp
Jb win c6f63317b6 FT - PilotComponent to drive so100
+ Base class for RobotPawn -> might be replaced by an Actor instead?
2025-05-02 00:36:58 +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);
}