You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When overriding SetupPlayerInputComponent in an APawn actor like this:
override public function SetupPlayerInputComponent(InputComponent:UInputComponent) {
InputComponent.BindActionHxVoid("Action1", EInputEvent.IE_Pressed, this, onAction1);
InputComponent.BindActionHxVoid("Action2", EInputEvent.IE_Pressed, this, onAction2);
InputComponent.BindActionHxVoid("Action3", EInputEvent.IE_Pressed, this, onAction3);
}
I get this when I run the game.
HaxeLog: Error: HaxeCodeDispatcher.hx:75: AKFTargetedPawn.SetupPlayerInputComponent: The object at index 83615 (UInputComponent) had incompatible serial numbers: 38173 != 0
HaxeLog: Error: HaxeCodeDispatcher.hx:79: Stack trace:
Called from uhx.ClassWrap.wrap (uhx/ClassWrap.hx line 60)
The text was updated successfully, but these errors were encountered:
When overriding SetupPlayerInputComponent in an APawn actor like this:
I get this when I run the game.
The text was updated successfully, but these errors were encountered: