This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/docs/wiki/Configuration:-Input.md b/docs/wiki/Configuration:-Input.md | |
| index 60a3808d..3aed18c5 100644 | |
| --- a/docs/wiki/Configuration:-Input.md | |
| +++ b/docs/wiki/Configuration:-Input.md | |
| @@ -351,6 +351,16 @@ input { | |
| } | |
| ``` | |
| +You can also set a delay in milliseconds before the focus change occurs. | |
| +This can help prevent accidental focus changes when moving the mouse across multiple windows or monitors. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> | |
| <title>Touch Voxel Clone</title> | |
| <style> | |
| body { margin: 0; overflow: hidden; background-color: #87CEEB; font-family: sans-serif; touch-action: none; user-select: none; -webkit-user-select: none; } | |
| canvas { display: block; } | |