MISC - Rename Variables

This commit is contained in:
Jb win
2025-05-02 00:21:59 +07:00
parent 28fc3bc723
commit 3e69ebc730
5 changed files with 50 additions and 32 deletions

View File

@ -25,9 +25,9 @@ void URobotPilotComponent::TickComponent(float DeltaTime, enum ELevelTick TickTy
void URobotPilotComponent::InitPilotComponent()
{
if (RobotOwner.Get() && RobotOwner->PhysicSceneProxy.Get())
if (RobotOwner.Get() && RobotOwner->PhysicsSceneProxy.Get())
{
RobotOwner->PhysicSceneProxy->BindPostPhysicStepDelegate(this, &URobotPilotComponent::PostPhysicStepUpdate);
RobotOwner->PhysicsSceneProxy->BindPostPhysicStepDelegate(this, &URobotPilotComponent::PostPhysicStepUpdate);
}
}