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
# 2024-01-25 | |
# ** match folder and sub folder | |
# unity project gitignore | |
**/[Ll]ibrary/ | |
**/[Ll]ogs/ | |
**/UIElementsSchema/ | |
**/ExportedObj/ | |
**/[Tt][Ee][Mm][Pp]/ |
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
# git-lfs | |
* text=auto | |
## Unity | |
*.prefab filter=lfs diff=lfs merge=unityyamlmerge -text | |
*.unity filter=lfs diff=lfs merge=unityyamlmerge -text | |
*.unitypackage filter=lfs diff=lfs merge=unityyamlmerge -text | |
*LightingData*.asset filter=lfs diff=lfs merge=unityyamlmerge -text | |
*LightmapSnapshot.asset filter=lfs diff=lfs merge=unityyamlmerge -text | |
*Terrain*.asset filter=lfs diff=lfs merge=unityyamlmerge -text |
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
"spacenavigator": "https://github.com/0x3f3f3f3f/SpaceNavigator.git#upm", |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; |