You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnrealEngine.gitignore 839B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # Visual Studio 2015 user specific files
  2. .vs/
  3. # Visual Studio 2015 database file
  4. *.VC.db
  5. # Compiled Object files
  6. *.slo
  7. *.lo
  8. *.o
  9. *.obj
  10. # Precompiled Headers
  11. *.gch
  12. *.pch
  13. # Compiled Dynamic libraries
  14. *.so
  15. *.dylib
  16. *.dll
  17. # Fortran module files
  18. *.mod
  19. # Compiled Static libraries
  20. *.lai
  21. *.la
  22. *.a
  23. *.lib
  24. # Executables
  25. *.exe
  26. *.out
  27. *.app
  28. *.ipa
  29. # These project files can be generated by the engine
  30. *.xcodeproj
  31. *.xcworkspace
  32. *.sln
  33. *.suo
  34. *.opensdf
  35. *.sdf
  36. *.VC.db
  37. *.VC.opendb
  38. # Precompiled Assets
  39. SourceArt/**/*.png
  40. SourceArt/**/*.tga
  41. # Binary Files
  42. Binaries/*
  43. # Builds
  44. Build/*
  45. # Don't ignore icon files in Build
  46. !Build/**/*.ico
  47. # Built data for maps
  48. *_BuiltData.uasset
  49. # Configuration files generated by the Editor
  50. Saved/*
  51. # Compiled source files for the engine to use
  52. Intermediate/*
  53. # Cache files for the editor to use
  54. DerivedDataCache/*