| 65 | } |
| 66 | |
| 67 | void UMjInputHandler::BeginPlay() |
| 68 | { |
| 69 | Super::BeginPlay(); |
| 70 | |
| 71 | if (FSlateApplication::IsInitialized()) |
| 72 | { |
| 73 | MouseDeltaProcessor = MakeShared<FMjMouseDeltaProcessor>(); |
| 74 | FSlateApplication::Get().RegisterInputPreProcessor(MouseDeltaProcessor); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | void UMjInputHandler::EndPlay(const EEndPlayReason::Type EndPlayReason) |
| 79 | { |
nothing calls this directly
no outgoing calls
no test coverage detected