コード例 #1
0
//Required Overrides, forward startup and tick.
void ACinemotusPlayerController::Tick(float DeltaTime)
{
	Super::Tick(DeltaTime);
	HydraTick(DeltaTime);
	//joystickHeaderText = ECinemotusJoystickState::ToString(currentJoystickState);
	joystickVerboseText = BuildVerboseJoystickText(currentJoystickState);
}
コード例 #2
0
void AHydraPluginActor::Tick(float DeltaTime)
{
	Super::Tick(DeltaTime);

	//Required Hydra Tick
	HydraTick(DeltaTime);
}
コード例 #3
0
void UHydraComponent::TickComponent(float DeltaTime, enum ELevelTick TickType,
                                    FActorComponentTickFunction *ThisTickFunction)
{
    Super::TickComponent(DeltaTime, TickType, ThisTickFunction);

    //Forward the component tick
    HydraTick(DeltaTime);
}
コード例 #4
0
void AHydraPlayerController::Tick(float DeltaTime)
{
	Super::Tick(DeltaTime);
	HydraTick(DeltaTime);
}