Resolve #6: Migrate LumiCharacter to C++ #7
@@ -1,4 +1,26 @@
|
||||
# https://github.com/MOZGIII/ue5-gitignore
|
||||
|
||||
# Unreal Engine file types.
|
||||
*.uasset filter=lfs diff=lfs merge=lfs -text
|
||||
*.umap filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
# Raw Content file types.
|
||||
*.3ds filter=lfs diff=lfs merge=lfs -text
|
||||
*.bmp filter=lfs diff=lfs merge=lfs -text
|
||||
*.exr filter=lfs diff=lfs merge=lfs -text
|
||||
*.fbx filter=lfs diff=lfs merge=lfs -text
|
||||
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
||||
*.jpg filter=lfs diff=lfs merge=lfs -text
|
||||
*.mov filter=lfs diff=lfs merge=lfs -text
|
||||
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
||||
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
||||
*.obj filter=lfs diff=lfs merge=lfs -text
|
||||
*.ogg filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.psd filter=lfs diff=lfs merge=lfs -text
|
||||
*.tga filter=lfs diff=lfs merge=lfs -text
|
||||
*.wav filter=lfs diff=lfs merge=lfs -text
|
||||
*.xcf filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
# Anything in `/RawContent` dir.
|
||||
/RawContent/**/* filter=lfs diff=lfs merge=lfs -text
|
||||
+41
-54
@@ -1,66 +1,53 @@
|
||||
# Visual Studio 2015 user specific files
|
||||
.vs/
|
||||
# https://github.com/MOZGIII/ue5-gitignore
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.obj
|
||||
# Ignore all files by default, but scan all directories.
|
||||
*
|
||||
!*/
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
# Do not ignore git files in the root of the repo.
|
||||
!/.git*
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
# Do not ignore current project's `.uproject`.
|
||||
!/*.uproject
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
# Do not ignore source, config and plugins dirs.
|
||||
!/Source/**
|
||||
!/Config/**
|
||||
!/Plugins/**
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
*.la
|
||||
*.a
|
||||
*.lib
|
||||
# Only allow .uasset and .umap files from /Content dir.
|
||||
# They're tracked by git-lfs, don't forget to track other
|
||||
# files if adding them here.
|
||||
!/Content/**/*.uasset
|
||||
!/Content/**/*.umap
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.ipa
|
||||
# Allow any files from /RawContent dir.
|
||||
# Any file in /RawContent dir will be managed by git lfs.
|
||||
!/RawContent/**/*
|
||||
|
||||
# These project files can be generated by the engine
|
||||
*.xcodeproj
|
||||
*.xcworkspace
|
||||
*.sln
|
||||
*.suo
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.VC.db
|
||||
*.VC.opendb
|
||||
# OS/platform generated files.
|
||||
|
||||
# Precompiled Assets
|
||||
**/SourceArt/**/*.png
|
||||
**/SourceArt/**/*.tga
|
||||
# Windows
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Builds
|
||||
**/Build/*
|
||||
# Mac OS X
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
._*
|
||||
|
||||
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
|
||||
!**/Build/*/
|
||||
**/Build/*/**
|
||||
!**/Build/*/PakBlacklist*.txt
|
||||
# Linux
|
||||
*~
|
||||
.directory
|
||||
|
||||
# Don't ignore icon files in Build
|
||||
!**/Build/**/*.ico
|
||||
# vim
|
||||
[._]*.s[a-w][a-z]
|
||||
[._]s[a-w][a-z]
|
||||
*.un~
|
||||
Session.vim
|
||||
.netrwhist
|
||||
|
||||
# Configuration files generated by the Editor
|
||||
**/Saved/*
|
||||
|
||||
# Compiled source files for the engine to use
|
||||
**/Intermediate/*
|
||||
|
||||
# Cache files for the editor to use
|
||||
**/DerivedDataCache/*
|
||||
# Visual Studio
|
||||
.vs
|
||||
Reference in New Issue
Block a user