-
-
Notifications
You must be signed in to change notification settings - Fork 43
Closed
Labels
P1Next release is blocked by this issueNext release is blocked by this issue
Milestone
Description
Description
Engine duplicates update events during one frame in case of Viewport and Preview in split-screen mode.
Prerequisites
WorldEditor is run and a project is opened. Viewport and Preview widgets in split-screen mode.
Steps to Reproduce
- Create a sample NativeBehaviour code from the Additional Information section
- Launch the Game Mode (Ctrl+G)
- Press and release Arrow Up key on the keyboard
- Press and release Mouse Left
- Check the console output in the editor
Expected behavior:
Messages must appear only once
Actual behavior:
Message is doubled
Reproducibility:
The issue reproduces constantly
Versions
2019.3
Additional Information
void update() {
if(Input::isKeyDown(Input::KEY_UP)) {
Log(Log::ERR) << "KeyPress";
}
}
Metadata
Metadata
Assignees
Labels
P1Next release is blocked by this issueNext release is blocked by this issue