| 2458 | } |
| 2459 | |
| 2460 | void AAlsxtCharacter::SetDesiredFreelooking(const FGameplayTag& NewFreelookingTag) |
| 2461 | { |
| 2462 | if (DesiredFreelooking != NewFreelookingTag) |
| 2463 | { |
| 2464 | DesiredFreelooking = NewFreelookingTag; |
| 2465 | |
| 2466 | MARK_PROPERTY_DIRTY_FROM_NAME(ThisClass, DesiredFreelooking, this) |
| 2467 | |
| 2468 | if (GetLocalRole() == ROLE_AutonomousProxy) |
| 2469 | { |
| 2470 | ServerSetDesiredFreelooking(NewFreelookingTag); |
| 2471 | } |
| 2472 | } |
| 2473 | } |
| 2474 | |
| 2475 | void AAlsxtCharacter::ServerSetDesiredFreelooking_Implementation(const FGameplayTag& NewFreelookingTag) |
| 2476 | { |
nothing calls this directly
no outgoing calls
no test coverage detected