ALSXT Pose State
| 2006 | |
| 2007 | // ALSXT Pose State |
| 2008 | void AAlsxtCharacter::SetALSXTPoseState(const FAlsxtPoseState& NewALSXTPoseState) |
| 2009 | { |
| 2010 | const auto PreviousALSXTPoseState{ ALSXTPoseState }; |
| 2011 | |
| 2012 | ALSXTPoseState = NewALSXTPoseState; |
| 2013 | |
| 2014 | OnALSXTPoseStateChanged(PreviousALSXTPoseState); |
| 2015 | |
| 2016 | if ((GetLocalRole() == ROLE_AutonomousProxy) && IsLocallyControlled()) |
| 2017 | { |
| 2018 | ServerSetALSXTPoseState(NewALSXTPoseState); |
| 2019 | } |
| 2020 | } |
| 2021 | |
| 2022 | void AAlsxtCharacter::ServerSetALSXTPoseState_Implementation(const FAlsxtPoseState& NewALSXTPoseState) |
| 2023 | { |
nothing calls this directly
no outgoing calls
no test coverage detected