Closed wyattbiker closed 5 years ago
Autosave is actually just a feature of VSCode. Add a setting to either your folder or your global vscode settings depending on your preference.
// Controls auto save of dirty files. Read more about autosave [here](https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save).
// - off: A dirty file is never automatically saved.
// - afterDelay: A dirty file is automatically saved after the configured `files.autoSaveDelay`.
// - onFocusChange: A dirty file is automatically saved when the editor loses focus.
// - onWindowChange: A dirty file is automatically saved when the window loses focus.
"files.autoSave": "off",
Would be nice to have the ability to autosave a source file before running the Unity game project. Is that something that can be done?