Init template repo for UE5

This commit is contained in:
Ben
2025-07-19 00:28:20 +02:00
parent bf2768bbad
commit b203b53bce
36 changed files with 9449 additions and 5 deletions

78
.gitignore vendored
View File

@@ -1,4 +1,71 @@
# ---> UnrealEngine
#
# This file tells Git about engine files that never really belong in source control. They are usually build products, log
# files and intermediate files generated from a compiler or the engine runtime.
#
#
# NOTE:
# Paths that start with / match paths relative to the root (where the .gitignore file is)
# Paths that end with / will match a folder and all files under it (but not a regular file with no extension)
# Use * for wildcards. Wildcards stop at path separators
# Use ** for a wildcard that spans path separators
# Paths in this file should use forward slash characters, not back slashes
# Use \ to escape special characters like ! and #
# Use ! to negate a previous pattern. But it doesn't work if the parent sub-folder was masked out already.
#
# Original Source: https://github.com/github/gitignore/blob/main/UnrealEngine.gitignore
# Ignore all files by default, but scan all directories.
*
!*/
# Do not ignore git files in the root of the repo.
!/.git*
# Do not ignore current project's `.uproject`.
!/*.uproject
# Do not ignore source, config and plugins dirs.
!/Source/**
!/Config/**
!/Plugins/**
# 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
# Allow video formats directly from /Content dir.
!/Content/**/*.mp4
!/Content/**/*.avi
!/Content/**/*.mov
# Allow any files from /RawContent dir.
# Any file in /RawContent dir will be managed by git lfs.
!/RawContent/**/*
# Windows
ehthumbs.db
Thumbs.db
# Mac OS X
.DS_Store
.DS_Store?
.AppleDouble
.LSOverride
._*
# Linux
*~
.directory
# vim
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
Session.vim
.netrwhist
# Visual Studio 2015 user specific files
.vs/
@@ -48,7 +115,7 @@ SourceArt/**/*.tga
# Binary Files
Binaries/*
Plugins/**/Binaries/*
Plugins/*/Binaries/*
# Builds
Build/*
@@ -69,8 +136,13 @@ Saved/*
# Compiled source files for the engine to use
Intermediate/*
Plugins/**/Intermediate/*
Plugins/*/Intermediate/*
# Cache files for the editor to use
DerivedDataCache/*
# Ignore Obsidian directory
.obsidian
# Ignore the Rider directory
.idea