Ejemplo n.º 1
0
void AOpenBarrierConsole::GetLifetimeReplicatedProps(TArray<FLifetimeProperty> & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);
	// Replicate to everyone
	DOREPLIFETIME(AOpenBarrierConsole, OpeningCode);
	DOREPLIFETIME(AOpenBarrierConsole, Displayer);
}
Ejemplo n.º 2
0
void AItemPickup::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AItemPickup, Mesh);
	DOREPLIFETIME(AItemPickup, SkeletalMesh);
}
void UARAttributeBaseComponent::GetLifetimeReplicatedProps(TArray< class FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(UARAttributeBaseComponent, ActivePeriodicEffects);
	DOREPLIFETIME(UARAttributeBaseComponent, ModifiedAttribute);
}
Ejemplo n.º 4
0
void UGSItemWeaponInfo::GetLifetimeReplicatedProps(TArray< class FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(UGSItemWeaponInfo, CurrentHand);
	DOREPLIFETIME(UGSItemWeaponInfo, LastAttachedSocket);
}
void UAbilityTask_MoveToLocation::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	DOREPLIFETIME(UAbilityTask_MoveToLocation, StartLocation);
	DOREPLIFETIME(UAbilityTask_MoveToLocation, TargetLocation);
	DOREPLIFETIME(UAbilityTask_MoveToLocation, DurationOfMovement);
	DOREPLIFETIME(UAbilityTask_MoveToLocation, LerpCurve);
}
Ejemplo n.º 6
0
void AGISPickupActor::GetLifetimeReplicatedProps(TArray< class FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AGISPickupActor, ItemToLoot);
	DOREPLIFETIME(AGISPickupActor, bIsCurrentlyBeingLooted);
}
Ejemplo n.º 7
0
void AProjectile::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AProjectile, homingTarget);
	DOREPLIFETIME(AProjectile, hitSound);
}
Ejemplo n.º 8
0
void UInventory::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);
	DOREPLIFETIME(UInventory, Items);
	DOREPLIFETIME(UInventory, TotalWeight);
	DOREPLIFETIME(UInventory, ThePlayer);
}
Ejemplo n.º 9
0
void ASBombActor::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(ASBombActor, bIsFuzeActive);
	DOREPLIFETIME(ASBombActor, bExploded);
}
Ejemplo n.º 10
0
void UGSItemWeaponRangedInfo::GetLifetimeReplicatedProps(TArray< class FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(UGSItemWeaponRangedInfo, RangedWeaponClass);
	DOREPLIFETIME(UGSItemWeaponRangedInfo, RangedWeapon);
}
Ejemplo n.º 11
0
void AProjectileSpell::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AProjectileSpell, GeometryComponent);
	DOREPLIFETIME(AProjectileSpell, DestroyOnValidCollision);
}
Ejemplo n.º 12
0
void AMainGameState::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AMainGameState, GameStartCountdown);
	DOREPLIFETIME(AMainGameState, ConnectedPlayersArray);
}
Ejemplo n.º 13
0
void UARBeamCue::GetLifetimeReplicatedProps(TArray< class FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(UARBeamCue, HitInfo);
	DOREPLIFETIME(UARBeamCue, IsFiring);
}
Ejemplo n.º 14
0
void ASGameState::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(ASGameState, ElapsedGameMinutes);
	DOREPLIFETIME(ASGameState, bIsNight);
}
Ejemplo n.º 15
0
void ASyncedMapPhysicsEntity::GetLifetimeReplicatedProps(TArray<FLifetimeProperty, FDefaultAllocator> & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(ASyncedMapPhysicsEntity, desiredPos);
	DOREPLIFETIME(ASyncedMapPhysicsEntity, desiredRot);
}
Ejemplo n.º 16
0
// Replication of data
void ARadePlayerState::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);
	DOREPLIFETIME(ARadePlayerState, DeathCount);
	DOREPLIFETIME(ARadePlayerState, KillCount);
	DOREPLIFETIME(ARadePlayerState, PlayerColor);
}
Ejemplo n.º 17
0
void AShooterPickup::GetLifetimeReplicatedProps( TArray< FLifetimeProperty > & OutLifetimeProps ) const
{
	Super::GetLifetimeReplicatedProps( OutLifetimeProps );

	DOREPLIFETIME( AShooterPickup, bIsActive );
	DOREPLIFETIME( AShooterPickup, PickedUpBy );
}
Ejemplo n.º 18
0
void AFlySkillActor::GetLifetimeReplicatedProps(TArray< FLifetimeProperty >& OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);
	DOREPLIFETIME(AFlySkillActor, TargetLocation);
	DOREPLIFETIME(AFlySkillActor, TargetActor);
	DOREPLIFETIME(AFlySkillActor, TeamId);
}
Ejemplo n.º 19
0
void AController::GetLifetimeReplicatedProps( TArray< FLifetimeProperty > & OutLifetimeProps ) const
{
	Super::GetLifetimeReplicatedProps( OutLifetimeProps );

	DOREPLIFETIME( AController, PlayerState );
	DOREPLIFETIME( AController, Pawn );
}
void AMagicBattleSoccerWeapon::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AMagicBattleSoccerWeapon, MyPawn);
	DOREPLIFETIME(AMagicBattleSoccerWeapon, ServerState);
}
void AZombieShooterCharacter::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	// Replicate to everyone
	DOREPLIFETIME(AZombieShooterCharacter, Rotation);
	DOREPLIFETIME(AZombieShooterCharacter, Projectile);
}
void UARActionStateComponent::GetLifetimeReplicatedProps(TArray< class FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(UARActionStateComponent, IsCasting);
	DOREPLIFETIME(UARActionStateComponent, IsRecharing);
	DOREPLIFETIME(UARActionStateComponent, Owner);
}
Ejemplo n.º 23
0
void AUTWeaponPawn::GetLifetimeReplicatedProps(TArray<class FLifetimeProperty>& OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AUTWeaponPawn, MyVehicleWeapon);
	DOREPLIFETIME(AUTWeaponPawn, MyVehicle);
	DOREPLIFETIME(AUTWeaponPawn, MySeatIndex);
}
void AGameplayAbilityTargetActor::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);
	DOREPLIFETIME(AGameplayAbilityTargetActor, StartLocation);
	DOREPLIFETIME(AGameplayAbilityTargetActor, SourceActor);
	DOREPLIFETIME(AGameplayAbilityTargetActor, bDebug);
	DOREPLIFETIME(AGameplayAbilityTargetActor, bDestroyOnConfirmation);
}
Ejemplo n.º 25
0
void ALobbyBeaconState::GetLifetimeReplicatedProps(TArray< FLifetimeProperty >& OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(ALobbyBeaconState, Players);
	DOREPLIFETIME(ALobbyBeaconState, bLobbyStarted);
	DOREPLIFETIME(ALobbyBeaconState, WaitForPlayersTimeRemaining);
}
Ejemplo n.º 26
0
void ALPlayerState::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(ALPlayerState, TeamNumber);
	DOREPLIFETIME(ALPlayerState, NumKills);
	DOREPLIFETIME(ALPlayerState, NumDeaths);
}
Ejemplo n.º 27
0
void AFpsPlayerState::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const
{
  Super::GetLifetimeReplicatedProps(OutLifetimeProps);

  DOREPLIFETIME(AFpsPlayerState, Team);
  DOREPLIFETIME(AFpsPlayerState, Kills);
  DOREPLIFETIME(AFpsPlayerState, Deaths);
}
Ejemplo n.º 28
0
void AAREffectPeriodic::GetLifetimeReplicatedProps(TArray< class FLifetimeProperty > & OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AAREffectPeriodic, IsEffectActive);
	DOREPLIFETIME(AAREffectPeriodic, EffectTarget);
	//DOREPLIFETIME(AAREffectPeriodic, EffectCauser);
}
Ejemplo n.º 29
0
void AUModCharacter::GetLifetimeReplicatedProps(TArray<FLifetimeProperty, FDefaultAllocator> & OutLifetimeProps) const
{
    Super::GetLifetimeReplicatedProps(OutLifetimeProps);

    DOREPLIFETIME(AUModCharacter, weapons);
    DOREPLIFETIME(AUModCharacter, curWeapon);
    DOREPLIFETIME(AUModCharacter, playerHealth);
}
Ejemplo n.º 30
0
void AAPlayerState::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const
{
	Super::GetLifetimeReplicatedProps(OutLifetimeProps);

	DOREPLIFETIME(AAPlayerState, NumPlayerKills);
	DOREPLIFETIME(AAPlayerState, NumBotKills);
	DOREPLIFETIME(AAPlayerState, NumDeaths);

}