From 85bd7926f6de7fba6c9905519415d24270309243 Mon Sep 17 00:00:00 2001 From: Fr0zka Date: Thu, 30 Apr 2026 11:39:27 +0200 Subject: [PATCH 1/3] Initial commit --- .gitignore | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 78 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..715b38f --- /dev/null +++ b/.gitignore @@ -0,0 +1,76 @@ +# ---> UnrealEngine +# Visual Studio 2015 user specific files +.vs/ + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app +*.ipa + +# These project files can be generated by the engine +*.xcodeproj +*.xcworkspace +*.sln +*.suo +*.opensdf +*.sdf +*.VC.db +*.VC.opendb + +# Precompiled Assets +SourceArt/**/*.png +SourceArt/**/*.tga + +# Binary Files +Binaries/* +Plugins/**/Binaries/* + +# Builds +Build/* + +# Whitelist PakBlacklist-.txt files +!Build/*/ +Build/*/** +!Build/*/PakBlacklist*.txt + +# Don't ignore icon files in Build +!Build/**/*.ico + +# Built data for maps +*_BuiltData.uasset + +# Configuration files generated by the Editor +Saved/* + +# Compiled source files for the engine to use +Intermediate/* +Plugins/**/Intermediate/* + +# Cache files for the editor to use +DerivedDataCache/* + diff --git a/README.md b/README.md new file mode 100644 index 0000000..8f7038c --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Depths + From 595cbdeda61b3c7e601ed3a2b9fa6745926e010f Mon Sep 17 00:00:00 2001 From: Fr0zka Date: Thu, 30 Apr 2026 11:41:14 +0200 Subject: [PATCH 2/3] Actualiser .gitignore Ajout d'instructions au .gitignore --- .gitignore | 136 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 77 insertions(+), 59 deletions(-) diff --git a/.gitignore b/.gitignore index 715b38f..9eac8f2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,40 +1,31 @@ -# ---> UnrealEngine -# Visual Studio 2015 user specific files +# ============================================ +# Unreal Engine +# ============================================ + +# Dossiers générés +Binaries/* +Plugins/**/Binaries/* +Build/* +Saved/* +Intermediate/* +Plugins/**/Intermediate/* +DerivedDataCache/* + +# Whitelist fichiers Build spécifiques +!Build/*/ +Build/*/** +!Build/*/PakBlacklist*.txt +!Build/**/*.ico + +# Built data des maps +*_BuiltData.uasset + +# ============================================ +# IDE / Fichiers projet générés +# ============================================ + +# Visual Studio .vs/ - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app -*.ipa - -# These project files can be generated by the engine -*.xcodeproj -*.xcworkspace *.sln *.suo *.opensdf @@ -42,35 +33,62 @@ *.VC.db *.VC.opendb -# Precompiled Assets -SourceArt/**/*.png -SourceArt/**/*.tga +# Xcode +*.xcodeproj +*.xcworkspace -# Binary Files -Binaries/* -Plugins/**/Binaries/* +# Rider / CLion +.idea/ +*.user -# Builds -Build/* +# ============================================ +# Compilés +# ============================================ -# Whitelist PakBlacklist-.txt files -!Build/*/ -Build/*/** -!Build/*/PakBlacklist*.txt +*.slo +*.lo +*.o +*.obj +*.gch +*.pch +*.so +*.dylib +*.dll +*.mod +*.lai +*.la +*.a +*.lib +*.exe +*.out +*.app +*.ipa -# Don't ignore icon files in Build -!Build/**/*.ico +# ============================================ +# Packaging +# ============================================ -# Built data for maps -*_BuiltData.uasset +*.pak +*.sig -# Configuration files generated by the Editor -Saved/* +# ============================================ +# OS +# ============================================ -# Compiled source files for the engine to use -Intermediate/* -Plugins/**/Intermediate/* +Thumbs.db +Desktop.ini +*.log -# Cache files for the editor to use -DerivedDataCache/* +# ============================================ +# Projet Depths +# ============================================ +# Maps de dev personnelles +Content/Maps/*_Dev_*.umap +Content/Maps/__ExternalActors__/*_Dev_*/ + +# Packs Marketplace (référence temporaire) +# Content/_Marketplace/ + +# DotNet (UE5.3+) +.dotnet/ \ No newline at end of file From 02c9028c0843eaa321a2f8c98c49686e38ea5034 Mon Sep 17 00:00:00 2001 From: Fr0zka Date: Thu, 30 Apr 2026 11:46:30 +0200 Subject: [PATCH 3/3] Ajout .gitattributes Ajout du .gitattributes pour initialisation LFS --- .gitattributes | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..87e01b9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,45 @@ +# Normalisation des fins de ligne +* text=auto + +# Fichiers UE5 → LFS +*.uasset filter=lfs diff=lfs merge=lfs -text +*.umap filter=lfs diff=lfs merge=lfs -text +*.ubulk filter=lfs diff=lfs merge=lfs -text +*.uptnl filter=lfs diff=lfs merge=lfs -text +*.uexp filter=lfs diff=lfs merge=lfs -text + +# Textures / Images +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.tga filter=lfs diff=lfs merge=lfs -text +*.bmp filter=lfs diff=lfs merge=lfs -text +*.psd filter=lfs diff=lfs merge=lfs -text +*.exr filter=lfs diff=lfs merge=lfs -text +*.xcf filter=lfs diff=lfs merge=lfs -text +*.hdr filter=lfs diff=lfs merge=lfs -text + +# Modèles 3D +*.fbx filter=lfs diff=lfs merge=lfs -text +*.obj filter=lfs diff=lfs merge=lfs -text +*.3ds filter=lfs diff=lfs merge=lfs -text +*.blend filter=lfs diff=lfs merge=lfs -text + +# Audio +*.wav filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text + +# Vidéo +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.mov filter=lfs diff=lfs merge=lfs -text +*.avi filter=lfs diff=lfs merge=lfs -text + +# Binaires compilés +*.dll filter=lfs diff=lfs merge=lfs -text +*.exe filter=lfs diff=lfs merge=lfs -text +*.pdb filter=lfs diff=lfs merge=lfs -text +*.lib filter=lfs diff=lfs merge=lfs -text +*.a filter=lfs diff=lfs merge=lfs -text +*.so filter=lfs diff=lfs merge=lfs -text \ No newline at end of file