Created
April 11, 2022 11:30
-
-
Save ashe23/8fdf580e472000952b29b73da840ce56 to your computer and use it in GitHub Desktop.
unreal engine gitignore
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
| # Visual Studio | |
| .vs/ | |
| # Rider | |
| .idea/ | |
| Plugins/Developer/RiderLink/* | |
| # Executable and Libraries | |
| *.slo | |
| *.lo | |
| *.o | |
| *.obj | |
| *.gch | |
| *.pch | |
| *.so | |
| *.dylib | |
| *.dll | |
| *.mod | |
| *.lai | |
| *.la | |
| *.a | |
| *.lib | |
| *.exe | |
| *.out | |
| *.app | |
| *.ipa | |
| # Engine Generated | |
| *.xcodeproj | |
| *.xcworkspace | |
| *.sln | |
| *.suo | |
| *.opensdf | |
| *.sdf | |
| *.VC.db | |
| *.VC.opendb | |
| # Engine Folders | |
| SourceArt/**/*.png | |
| SourceArt/**/*.tga | |
| Binaries/* | |
| Plugins/*/Binaries/* | |
| Build/* | |
| !Build/*/ | |
| Build/*/** | |
| !Build/*/PakBlacklist*.txt | |
| !Build/**/*.ico | |
| *_BuiltData.uasset | |
| Saved/* | |
| Intermediate/* | |
| Plugins/*/Intermediate/* | |
| DerivedDataCache/* | |
| # Project Specific Settings | |
| Content/Developers/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment