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
private class PositionWidth | |
{ | |
public const int timeToDisappear = 3000; | |
public Vector2 position { get; private set; } | |
public float width { get; private set; } | |
private float elapsedTime; | |
public PositionWidth(Vector2 position, float width) | |
{ |
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
// Place your key bindings in this file to overwrite the defaults | |
// Need to Edit.LineUp in intellisense without using arrow keys? Want to navigate intellisense in VSCode without arrow keys? | |
// Add this to keybindings.json | |
[ | |
{ | |
"key": "ctrl+shift+s", | |
"command": "workbench.action.files.saveAll" | |
}, | |
{ | |
"key": "ctrl+k s", |
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
// keybindings for VSCode and vim. Enables system clip board, classic cut, paste, copy, find, and select-all hotkeys. | |
{ | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.handleKeys": { | |
"<C-a>": false, | |
"<C-f>": false, | |
"<C-c>": false, | |
"<C-v>": false, | |
"<C-x>": false |
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
Tools->Options->Environment->Keyboard | |
Edit.LineUp | |
Edit.LineDown |