Compare commits
1 Commits
main
...
angela-hae
Author | SHA1 | Date | |
---|---|---|---|
|
17dd6e5fd1 |
13
.gitattributes
vendored
Normal file
13
.gitattributes
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# UE file types
|
||||||
|
*.uasset filter=lfs diff=lfs merge=lfs -text binary
|
||||||
|
*.umap filter=lfs diff=lfs merge=lfs -text binary
|
||||||
|
|
||||||
|
# Raw Content types
|
||||||
|
*.fbx filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.3ds filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.psd filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.wav filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xcf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jpg filter=lfs diff=lfs merge=lfs -text
|
94
.gitignore
vendored
94
.gitignore
vendored
@ -1,2 +1,94 @@
|
|||||||
|
# ---> UnrealEngine
|
||||||
|
# Visual Studio 2015 user specific files
|
||||||
|
.vs/
|
||||||
|
|
||||||
hwanyoung2/Content/Illusions/.cache/\{d547300b-f688-4816-b2a8-0edd5f5e77a1\}.pdc
|
# Compiled Object files
|
||||||
|
*.slo
|
||||||
|
*.lo
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
|
||||||
|
# Precompiled Headers
|
||||||
|
*.gch
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Compiled Dynamic libraries
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
|
||||||
|
# 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-<BuildConfiguration>.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/*
|
||||||
|
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Mac-34EEC289FE4D9617CF67F4B263CA0A34/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Mac-3FEFDE13C040C6AB015942BCAAA94AC5/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Mac-8229A4D1044074E7E57688B9C8584F35/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Mac-8FF2349872403D15924AA7A9DDD88FA9/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Windows-1CB0ECA540B203164FBC5CB7E3D18513/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Windows-3CBF4142422E61BB391467A4D90E8A0A/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Windows-9E1B6C68493CF0477FFBEFB39A92819A/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Saved/Config/CrashReportClient/UECC-Windows-D69725EC4A973970CFFC03B9FDD5D423/CrashReportClient.ini
|
||||||
|
|
||||||
|
hwanyoung2/Intermediate/ReimportCache/3688439234.bin
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"components": [
|
"components": [
|
||||||
"Microsoft.Net.Component.4.6.2.TargetingPack",
|
"Microsoft.Net.Component.4.6.2.TargetingPack",
|
||||||
"Microsoft.VisualStudio.Component.VC.14.36.17.6.x86.x64",
|
"Microsoft.VisualStudio.Component.VC.14.33.17.3.ARM64",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.14.33.17.3.x86.x64",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.Tools.ARM64",
|
||||||
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
|
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
|
||||||
"Microsoft.VisualStudio.Component.Windows10SDK.22000",
|
"Microsoft.VisualStudio.Component.Windows10SDK",
|
||||||
"Microsoft.VisualStudio.Workload.CoreEditor",
|
"Microsoft.VisualStudio.Workload.CoreEditor",
|
||||||
"Microsoft.VisualStudio.Workload.ManagedDesktop",
|
"Microsoft.VisualStudio.Workload.ManagedDesktop",
|
||||||
|
"Microsoft.VisualStudio.Workload.NativeCrossPlat",
|
||||||
"Microsoft.VisualStudio.Workload.NativeDesktop",
|
"Microsoft.VisualStudio.Workload.NativeDesktop",
|
||||||
"Microsoft.VisualStudio.Workload.NativeGame"
|
"Microsoft.VisualStudio.Workload.NativeGame",
|
||||||
|
"Microsoft.VisualStudio.Workload.Universal"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
BIN
hwanyoung2/Binaries/Win64/UnrealEditor-hwanyoung2.dll
Normal file
BIN
hwanyoung2/Binaries/Win64/UnrealEditor-hwanyoung2.dll
Normal file
Binary file not shown.
BIN
hwanyoung2/Binaries/Win64/UnrealEditor-hwanyoung2.pdb
Normal file
BIN
hwanyoung2/Binaries/Win64/UnrealEditor-hwanyoung2.pdb
Normal file
Binary file not shown.
7
hwanyoung2/Binaries/Win64/UnrealEditor.modules
Normal file
7
hwanyoung2/Binaries/Win64/UnrealEditor.modules
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"BuildId": "27405482",
|
||||||
|
"Modules":
|
||||||
|
{
|
||||||
|
"hwanyoung2": "UnrealEditor-hwanyoung2.dll"
|
||||||
|
}
|
||||||
|
}
|
24937
hwanyoung2/Binaries/Win64/hwanyoung2Editor.target
Normal file
24937
hwanyoung2/Binaries/Win64/hwanyoung2Editor.target
Normal file
File diff suppressed because it is too large
Load Diff
@ -9,23 +9,3 @@ bBlueprintIsNotBlueprintType= true
|
|||||||
|
|
||||||
[/Script/AdvancedPreviewScene.SharedProfiles]
|
[/Script/AdvancedPreviewScene.SharedProfiles]
|
||||||
|
|
||||||
[/Script/Localization.LocalizationSettings]
|
|
||||||
-EngineTargetsSettings=(Name="Engine",Guid=33482D004789784C9DA695A682ACCA1B,TargetDependencies=,AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=True,SearchDirectories=((Path="Source/Runtime/"),(Path="Source/Developer/"),(Path="Config/")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*"),(Pattern="Source/Developer/NoRedist/UnrealEngineLauncherServices/*"),(Pattern="Source/Developer/NoRedist/BuildPatchServices/*")),FileExtensions=((Pattern="cpp"),(Pattern="h"),(Pattern="c"),(Pattern="inl"),(Pattern="mm"),(Pattern="ini"))),GatherFromPackages=(IsEnabled=True,IncludePathWildcards=((Pattern="Content/*")),ExcludePathWildcards=((Pattern="Content/Editor/*"),(Pattern="Content/Tutorial/*"),(Pattern="Content/Developers/*"),(Pattern="Content/TestPackages/*"),(Pattern="Content/QA_Assets/*"),(Pattern="Content/Maps/Automation/*"),(Pattern="Content/EngineSounds/*")),FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=True),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,ShouldGatherFromEditorOnlyData=True),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
-EngineTargetsSettings=(Name="Editor",Guid=AC8BFD2A41A2FB2893BB8EA0AF903E6D,TargetDependencies=(33482D004789784C9DA695A682ACCA1B),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=True,SearchDirectories=((Path="Source/Editor/")),ExcludePathWildcards=,FileExtensions=((Pattern="cpp"),(Pattern="h"),(Pattern="c"),(Pattern="inl"),(Pattern="mm"))),GatherFromPackages=(IsEnabled=True,IncludePathWildcards=((Pattern="Content/Editor/*"),(Pattern="Content/Editor*")),ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=True),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,ShouldGatherFromEditorOnlyData=True),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
-EngineTargetsSettings=(Name="EditorTutorials",Guid=00F8E3AD47F0A73D50D46881C14DF28F,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=("IntroTutorials"),GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini"))),GatherFromPackages=(IsEnabled=True,IncludePathWildcards=((Pattern="Content/Tutorial/*")),ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=True),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,ShouldGatherFromEditorOnlyData=True),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
-EngineTargetsSettings=(Name="PropertyNames",Guid=E391A8B149980E8154E056AF2DA49479,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini"))),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=True),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="DisplayName"),TextNamespace="UObjectDisplayNames",TextKeyPattern=(Pattern="{FieldPath}"))),ShouldGatherFromEditorOnlyData=True),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
-EngineTargetsSettings=(Name="ToolTips",Guid=0F116534468918AEA432DD8C77703BA8,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini"))),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=True),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="ToolTip"),TextNamespace="UObjectToolTips",TextKeyPattern=(Pattern="{FieldPath}")),(MetaDataKey=(Name="ShortToolTip"),TextNamespace="UObjectShortToolTips",TextKeyPattern=(Pattern="{FieldPath}"))),ShouldGatherFromEditorOnlyData=True),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
-EngineTargetsSettings=(Name="Keywords",Guid=AE89AECB47475F420D0D69A5547515DC,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini"))),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=True),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="Keywords"),TextNamespace="UObjectKeywords",TextKeyPattern=(Pattern="{FieldPath}"))),ShouldGatherFromEditorOnlyData=True),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
-EngineTargetsSettings=(Name="Category",Guid=14B8DEE642A6A7AFEB5A28B959EC373A,TargetDependencies=,AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini"))),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=False),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="Category"),TextNamespace="UObjectCategory",TextKeyPattern=(Pattern="{FieldPath}"))),ShouldGatherFromEditorOnlyData=True),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
+EngineTargetsSettings=(Name="Engine",Guid=33482D004789784C9DA695A682ACCA1B,TargetDependencies=,AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=True,SearchDirectories=((Path="Source/Runtime/"),(Path="Source/Developer/"),(Path="Config/")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*"),(Pattern="Source/Developer/NoRedist/UnrealEngineLauncherServices/*"),(Pattern="Source/Developer/NoRedist/BuildPatchServices/*")),FileExtensions=((Pattern="cpp"),(Pattern="h"),(Pattern="c"),(Pattern="inl"),(Pattern="mm"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=True,IncludePathWildcards=((Pattern="Content/*")),ExcludePathWildcards=((Pattern="Content/Editor/*"),(Pattern="Content/Tutorial/*"),(Pattern="Content/Developers/*"),(Pattern="Content/TestPackages/*"),(Pattern="Content/QA_Assets/*"),(Pattern="Content/Maps/Automation/*"),(Pattern="Content/EngineSounds/*")),FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=True,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=True),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
+EngineTargetsSettings=(Name="Editor",Guid=AC8BFD2A41A2FB2893BB8EA0AF903E6D,TargetDependencies=(33482D004789784C9DA695A682ACCA1B),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=True,SearchDirectories=((Path="Source/Editor/")),ExcludePathWildcards=,FileExtensions=((Pattern="cpp"),(Pattern="h"),(Pattern="c"),(Pattern="inl"),(Pattern="mm")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=True,IncludePathWildcards=((Pattern="Content/Editor/*"),(Pattern="Content/Editor*")),ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=True,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=True),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
+EngineTargetsSettings=(Name="EditorTutorials",Guid=00F8E3AD47F0A73D50D46881C14DF28F,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=("IntroTutorials"),GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=True,IncludePathWildcards=((Pattern="Content/Tutorial/*")),ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=True,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=True),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
+EngineTargetsSettings=(Name="PropertyNames",Guid=E391A8B149980E8154E056AF2DA49479,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=True,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="DisplayName"),TextNamespace="UObjectDisplayNames",TextKeyPattern=(Pattern="{FieldPath}"))),FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=True),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
+EngineTargetsSettings=(Name="ToolTips",Guid=0F116534468918AEA432DD8C77703BA8,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=True,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="ToolTip"),TextNamespace="UObjectToolTips",TextKeyPattern=(Pattern="{FieldPath}")),(MetaDataKey=(Name="ShortToolTip"),TextNamespace="UObjectShortToolTips",TextKeyPattern=(Pattern="{FieldPath}"))),FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=True),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
+EngineTargetsSettings=(Name="Keywords",Guid=AE89AECB47475F420D0D69A5547515DC,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=True,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="Keywords"),TextNamespace="UObjectKeywords",TextKeyPattern=(Pattern="{FieldPath}"))),FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=True),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
+EngineTargetsSettings=(Name="Category",Guid=14B8DEE642A6A7AFEB5A28B959EC373A,TargetDependencies=,AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=False,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=True,IncludePathWildcards=((Pattern="Source/Editor/*"),(Pattern="Source/Runtime/*"),(Pattern="Source/Developer/*")),ExcludePathWildcards=((Pattern="Source/Developer/NoRedist/CommunityPortalServices/*")),KeySpecifications=((MetaDataKey=(Name="Category"),TextNamespace="UObjectCategory",TextKeyPattern=(Pattern="{FieldPath}"))),FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=True),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="es"),(CultureName="ja"),(CultureName="ko"),(CultureName="pt-BR"),(CultureName="zh-CN")))
|
|
||||||
-GameTargetsSettings=(Name="Game",Guid=AE0EA34A45461A25BA65A391026F19F8,TargetDependencies=(33482D004789784C9DA695A682ACCA1B,AC8BFD2A41A2FB2893BB8EA0AF903E6D),AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini"))),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),ShouldGatherFromEditorOnlyData=False),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,ShouldGatherFromEditorOnlyData=False),NativeCultureIndex=-1,SupportedCulturesStatistics=((CultureName="en")))
|
|
||||||
+GameTargetsSettings=(Name="Game",Guid=AE0EA34A45461A25BA65A391026F19F8,TargetDependencies=,AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=((Pattern="Content/*")),ExcludePathWildcards=,FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=False,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=False),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="ko")))
|
|
||||||
+GameTargetsSettings=(Name="Dialogue",Guid=C97D68154CC5837251B3D688D461DCB4,TargetDependencies=,AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=False,SearchDirectories=,ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=True,IncludePathWildcards=((Pattern="Content/Hwanyoung/*")),ExcludePathWildcards=((Pattern="Content/L10N/*")),FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=False,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=False),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="ko-KR")))
|
|
||||||
+GameTargetsSettings=(Name="SourceCode",Guid=1EF798AD49AD3030FC74E1A290909F32,TargetDependencies=,AdditionalManifestDependencies=,RequiredModuleNames=,GatherFromTextFiles=(IsEnabled=True,SearchDirectories=((Path="Source")),ExcludePathWildcards=,FileExtensions=((Pattern="h"),(Pattern="cpp"),(Pattern="ini")),ShouldGatherFromEditorOnlyData=False),GatherFromPackages=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=((Pattern="Content/L10N/*")),FileExtensions=((Pattern="umap"),(Pattern="uasset")),Collections=,ExcludeClasses=,ShouldExcludeDerivedClasses=False,ShouldGatherFromEditorOnlyData=False,SkipGatherCache=False),GatherFromMetaData=(IsEnabled=False,IncludePathWildcards=,ExcludePathWildcards=,KeySpecifications=,FieldTypesToInclude=,FieldTypesToExclude=,FieldOwnerTypesToInclude=,FieldOwnerTypesToExclude=,ShouldGatherFromEditorOnlyData=False),ExportSettings=(CollapseMode=IdenticalTextIdAndSource,POFormat=Unreal,ShouldPersistCommentsOnExport=False,ShouldAddSourceLocationsAsComments=True),CompileSettings=(SkipSourceCheck=False,ValidateFormatPatterns=True,ValidateSafeWhitespace=False),ImportDialogueSettings=(RawAudioPath=(Path=""),ImportedDialogueFolder="ImportedDialogue",bImportNativeAsSource=False),NativeCultureIndex=0,SupportedCulturesStatistics=((CultureName="en"),(CultureName="ko-KR")))
|
|
||||||
|
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
[/Script/EngineSettings.GameMapsSettings]
|
[/Script/EngineSettings.GameMapsSettings]
|
||||||
GameDefaultMap=/Game/Hwanyoung/Levels/Sprink_TEST.Sprink_TEST
|
GameDefaultMap=/Game/ThirdPerson/Maps/ThirdPersonMap.ThirdPersonMap
|
||||||
EditorStartupMap=/Game/Hwanyoung/Levels/Sprink_TEST.Sprink_TEST
|
EditorStartupMap=/Game/Hwanyoung/Levels/Spring-Sharon.Spring-Sharon
|
||||||
GlobalDefaultGameMode=/Script/hwanyoung2.hwanyoung2GameMode
|
GlobalDefaultGameMode="/Script/hwanyoung2.hwanyoung2GameMode"
|
||||||
GameInstanceClass=/Game/Hwanyoung/Interactables/BP_GameInstance.BP_GameInstance_C
|
|
||||||
|
|
||||||
[/Script/Engine.RendererSettings]
|
[/Script/Engine.RendererSettings]
|
||||||
r.Mobile.ShadingPath=0
|
r.Mobile.ShadingPath=0
|
||||||
@ -186,6 +185,7 @@ AppliedDefaultGraphicsPerformance=Scalable
|
|||||||
+ActiveClassRedirects=(OldClassName="TP_ThirdPersonGameMode",NewClassName="hwanyoung2GameMode")
|
+ActiveClassRedirects=(OldClassName="TP_ThirdPersonGameMode",NewClassName="hwanyoung2GameMode")
|
||||||
+ActiveClassRedirects=(OldClassName="TP_ThirdPersonCharacter",NewClassName="hwanyoung2Character")
|
+ActiveClassRedirects=(OldClassName="TP_ThirdPersonCharacter",NewClassName="hwanyoung2Character")
|
||||||
|
|
||||||
|
|
||||||
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
||||||
bEnablePlugin=True
|
bEnablePlugin=True
|
||||||
bAllowNetworkConnection=True
|
bAllowNetworkConnection=True
|
||||||
@ -238,7 +238,6 @@ ManualIPAddress=
|
|||||||
+Profiles=(Name="Vehicle",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="Vehicle",CustomResponses=,HelpMessage="Vehicle object that blocks Vehicle, WorldStatic, and WorldDynamic. All other channels will be set to default.")
|
+Profiles=(Name="Vehicle",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="Vehicle",CustomResponses=,HelpMessage="Vehicle object that blocks Vehicle, WorldStatic, and WorldDynamic. All other channels will be set to default.")
|
||||||
+Profiles=(Name="UI",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility"),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldStatic object that overlaps all actors by default. All new custom channels will use its own default response. ")
|
+Profiles=(Name="UI",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility"),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldStatic object that overlaps all actors by default. All new custom channels will use its own default response. ")
|
||||||
+Profiles=(Name="WaterBodyCollision",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="",CustomResponses=((Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Ignore),(Channel="Camera",Response=ECR_Ignore),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="Default Water Collision Profile (Created by Water Plugin)")
|
+Profiles=(Name="WaterBodyCollision",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="",CustomResponses=((Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Ignore),(Channel="Camera",Response=ECR_Ignore),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="Default Water Collision Profile (Created by Water Plugin)")
|
||||||
+DefaultChannelResponses=(Channel=ECC_GameTraceChannel1,DefaultResponse=ECR_Ignore,bTraceType=True,bStaticObject=False,Name="GroundOnly")
|
|
||||||
-ProfileRedirects=(OldName="BlockingVolume",NewName="InvisibleWall")
|
-ProfileRedirects=(OldName="BlockingVolume",NewName="InvisibleWall")
|
||||||
-ProfileRedirects=(OldName="InterpActor",NewName="IgnoreOnlyPawn")
|
-ProfileRedirects=(OldName="InterpActor",NewName="IgnoreOnlyPawn")
|
||||||
-ProfileRedirects=(OldName="StaticMeshComponent",NewName="BlockAllDynamic")
|
-ProfileRedirects=(OldName="StaticMeshComponent",NewName="BlockAllDynamic")
|
||||||
@ -258,14 +257,3 @@ ManualIPAddress=
|
|||||||
+CollisionChannelRedirects=(OldName="VehicleMovement",NewName="Vehicle")
|
+CollisionChannelRedirects=(OldName="VehicleMovement",NewName="Vehicle")
|
||||||
+CollisionChannelRedirects=(OldName="PawnMovement",NewName="Pawn")
|
+CollisionChannelRedirects=(OldName="PawnMovement",NewName="Pawn")
|
||||||
|
|
||||||
[Internationalization]
|
|
||||||
+LocalizationPaths=%GAMEDIR%Content/Localization/Text
|
|
||||||
+LocalizationPaths=%GAMEDIR%Content/Localization/UI
|
|
||||||
+LocalizationPaths=%GAMEDIR%Content/Localization/SourceCode
|
|
||||||
+LocalizationPaths=%GAMEDIR%Content/Localization/System
|
|
||||||
+LocalizationPaths=%GAMEDIR%Content/Localization/Game
|
|
||||||
+LocalizationPaths=%GAMEDIR%Content/Localization/Dialogue
|
|
||||||
|
|
||||||
[/Script/Engine.UserInterfaceSettings]
|
|
||||||
UIScaleRule=ScaleToFit
|
|
||||||
|
|
||||||
|
@ -6,6 +6,8 @@ ProjectName=Third Person Game Template
|
|||||||
Build=IfProjectHasCode
|
Build=IfProjectHasCode
|
||||||
BuildConfiguration=PPBC_Development
|
BuildConfiguration=PPBC_Development
|
||||||
BuildTarget=
|
BuildTarget=
|
||||||
|
LaunchOnTarget=
|
||||||
|
StagingDirectory=(Path="")
|
||||||
FullRebuild=False
|
FullRebuild=False
|
||||||
ForDistribution=False
|
ForDistribution=False
|
||||||
IncludeDebugFiles=False
|
IncludeDebugFiles=False
|
||||||
@ -44,17 +46,9 @@ bDeterministicShaderCodeOrder=False
|
|||||||
bSharedMaterialNativeLibraries=True
|
bSharedMaterialNativeLibraries=True
|
||||||
ApplocalPrerequisitesDirectory=(Path="")
|
ApplocalPrerequisitesDirectory=(Path="")
|
||||||
IncludeCrashReporter=False
|
IncludeCrashReporter=False
|
||||||
InternationalizationPreset=EFIGSCJK
|
InternationalizationPreset=English
|
||||||
-CulturesToStage=en
|
-CulturesToStage=en
|
||||||
+CulturesToStage=en
|
+CulturesToStage=en
|
||||||
+CulturesToStage=ja
|
|
||||||
+CulturesToStage=ko
|
|
||||||
+CulturesToStage=zh
|
|
||||||
+CulturesToStage=en-001
|
|
||||||
+CulturesToStage=en-001
|
|
||||||
+CulturesToStage=ja-JP
|
|
||||||
+CulturesToStage=ja-JP
|
|
||||||
+CulturesToStage=ko-KR
|
|
||||||
LocalizationTargetCatchAllChunkId=0
|
LocalizationTargetCatchAllChunkId=0
|
||||||
bCookAll=False
|
bCookAll=False
|
||||||
bCookMapsOnly=False
|
bCookMapsOnly=False
|
||||||
@ -110,8 +104,7 @@ bSkipMovies=False
|
|||||||
+DirectoriesToAlwaysCook=(Path="/Game/FMOD/Snapshots")
|
+DirectoriesToAlwaysCook=(Path="/Game/FMOD/Snapshots")
|
||||||
+DirectoriesToAlwaysCook=(Path="/Game/FMOD/VCAs")
|
+DirectoriesToAlwaysCook=(Path="/Game/FMOD/VCAs")
|
||||||
+DirectoriesToAlwaysStageAsNonUFS=(Path="FMOD/Desktop")
|
+DirectoriesToAlwaysStageAsNonUFS=(Path="FMOD/Desktop")
|
||||||
|
PerPlatformBuildConfig=()
|
||||||
[Internationalization]
|
PerPlatformTargetFlavorName=()
|
||||||
+LocalizationPaths=%GAMEDIR%Content/Localization/Local
|
PerPlatformBuildTarget=()
|
||||||
-LocalizationPaths=%GAMEDIR%Content/Localization/Game
|
|
||||||
|
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
ResourceName=Dialogue.locres
|
|
||||||
bSkipSourceCheck=false
|
|
||||||
bValidateFormatPatterns=true
|
|
||||||
bValidateSafeWhitespace=false
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GenerateTextLocalizationResource
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
PortableObjectName=Dialogue.po
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=InternationalizationExport
|
|
||||||
bExportLoc=true
|
|
||||||
LocalizedTextCollapseMode=ELocalizedTextCollapseMode::IdenticalTextIdAndSource
|
|
||||||
POFormat=EPortableObjectFormat::Unreal
|
|
||||||
ShouldPersistCommentsOnExport=false
|
|
||||||
ShouldAddSourceLocationsAsComments=true
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
DialogueScriptName=DialogueDialogue.csv
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ExportDialogueScript
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GatherTextFromAssets
|
|
||||||
IncludePathFilters=Content/Hwanyoung/*
|
|
||||||
ExcludePathFilters=Content/Localization/*
|
|
||||||
ExcludePathFilters=Content/L10N/*
|
|
||||||
PackageFileNameFilters=*.umap
|
|
||||||
PackageFileNameFilters=*.uasset
|
|
||||||
ShouldExcludeDerivedClasses=false
|
|
||||||
ShouldGatherFromEditorOnlyData=false
|
|
||||||
SkipGatherCache=false
|
|
||||||
|
|
||||||
[GatherTextStep1]
|
|
||||||
CommandletClass=GenerateGatherManifest
|
|
||||||
|
|
||||||
[GatherTextStep2]
|
|
||||||
CommandletClass=GenerateGatherArchive
|
|
||||||
|
|
||||||
[GatherTextStep3]
|
|
||||||
CommandletClass=GenerateTextLocalizationReport
|
|
||||||
bWordCountReport=true
|
|
||||||
WordCountReportName=Dialogue.csv
|
|
||||||
bConflictReport=true
|
|
||||||
ConflictReportName=Dialogue_Conflicts.txt
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GenerateTextLocalizationReport
|
|
||||||
bWordCountReport=true
|
|
||||||
WordCountReportName=Dialogue.csv
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
PortableObjectName=Dialogue.po
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=InternationalizationExport
|
|
||||||
bImportLoc=true
|
|
||||||
LocalizedTextCollapseMode=ELocalizedTextCollapseMode::IdenticalTextIdAndSource
|
|
||||||
POFormat=EPortableObjectFormat::Unreal
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ImportLocalizedDialogue
|
|
||||||
RawAudioPath=
|
|
||||||
ImportedDialogueFolder=ImportedDialogue
|
|
||||||
bImportNativeAsSource=false
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
DialogueScriptName=DialogueDialogue.csv
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ImportDialogueScript
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
DestinationPath=Content/Localization/Game
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
ResourceName=Game.locres
|
|
||||||
bSkipSourceCheck=false
|
|
||||||
bValidateFormatPatterns=true
|
|
||||||
bValidateSafeWhitespace=false
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GenerateTextLocalizationResource
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
DestinationPath=Content/Localization/Game
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
PortableObjectName=Game.po
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=InternationalizationExport
|
|
||||||
bExportLoc=true
|
|
||||||
LocalizedTextCollapseMode=ELocalizedTextCollapseMode::IdenticalTextIdAndSource
|
|
||||||
POFormat=EPortableObjectFormat::Unreal
|
|
||||||
ShouldPersistCommentsOnExport=false
|
|
||||||
ShouldAddSourceLocationsAsComments=true
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
DestinationPath=Content/Localization/Game
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
DialogueScriptName=GameDialogue.csv
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ExportDialogueScript
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
DestinationPath=Content/Localization/Game
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GenerateGatherManifest
|
|
||||||
|
|
||||||
[GatherTextStep1]
|
|
||||||
CommandletClass=GenerateGatherArchive
|
|
||||||
|
|
||||||
[GatherTextStep2]
|
|
||||||
CommandletClass=GenerateTextLocalizationReport
|
|
||||||
bWordCountReport=true
|
|
||||||
WordCountReportName=Game.csv
|
|
||||||
bConflictReport=true
|
|
||||||
ConflictReportName=Game_Conflicts.txt
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
DestinationPath=Content/Localization/Game
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GenerateTextLocalizationReport
|
|
||||||
bWordCountReport=true
|
|
||||||
WordCountReportName=Game.csv
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
DestinationPath=Content/Localization/Game
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
PortableObjectName=Game.po
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=InternationalizationExport
|
|
||||||
bImportLoc=true
|
|
||||||
LocalizedTextCollapseMode=ELocalizedTextCollapseMode::IdenticalTextIdAndSource
|
|
||||||
POFormat=EPortableObjectFormat::Unreal
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ImportLocalizedDialogue
|
|
||||||
RawAudioPath=
|
|
||||||
ImportedDialogueFolder=ImportedDialogue
|
|
||||||
bImportNativeAsSource=false
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/Game
|
|
||||||
DestinationPath=Content/Localization/Game
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko
|
|
||||||
ManifestName=Game.manifest
|
|
||||||
ArchiveName=Game.archive
|
|
||||||
DialogueScriptName=GameDialogue.csv
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ImportDialogueScript
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
|||||||
[RegenerateResources]
|
|
||||||
NativeCulture=en
|
|
||||||
SourcePath=Content/Localization/Dialogue
|
|
||||||
DestinationPath=Content/Localization/Dialogue
|
|
||||||
ManifestName=Dialogue.manifest
|
|
||||||
ArchiveName=Dialogue.archive
|
|
||||||
ResourceName=Dialogue.locres
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
DestinationPath=Content/Localization/SourceCode
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
ResourceName=SourceCode.locres
|
|
||||||
bSkipSourceCheck=false
|
|
||||||
bValidateFormatPatterns=true
|
|
||||||
bValidateSafeWhitespace=false
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GenerateTextLocalizationResource
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
DestinationPath=Content/Localization/SourceCode
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
PortableObjectName=SourceCode.po
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=InternationalizationExport
|
|
||||||
bExportLoc=true
|
|
||||||
LocalizedTextCollapseMode=ELocalizedTextCollapseMode::IdenticalTextIdAndSource
|
|
||||||
POFormat=EPortableObjectFormat::Unreal
|
|
||||||
ShouldPersistCommentsOnExport=false
|
|
||||||
ShouldAddSourceLocationsAsComments=true
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
DestinationPath=Content/Localization/SourceCode
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
DialogueScriptName=SourceCodeDialogue.csv
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ExportDialogueScript
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
DestinationPath=Content/Localization/SourceCode
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GatherTextFromSource
|
|
||||||
SearchDirectoryPaths=Source
|
|
||||||
ExcludePathFilters=Config/Localization/*
|
|
||||||
FileNameFilters=*.h
|
|
||||||
FileNameFilters=*.cpp
|
|
||||||
FileNameFilters=*.ini
|
|
||||||
ShouldGatherFromEditorOnlyData=false
|
|
||||||
|
|
||||||
[GatherTextStep1]
|
|
||||||
CommandletClass=GenerateGatherManifest
|
|
||||||
|
|
||||||
[GatherTextStep2]
|
|
||||||
CommandletClass=GenerateGatherArchive
|
|
||||||
|
|
||||||
[GatherTextStep3]
|
|
||||||
CommandletClass=GenerateTextLocalizationReport
|
|
||||||
bWordCountReport=true
|
|
||||||
WordCountReportName=SourceCode.csv
|
|
||||||
bConflictReport=true
|
|
||||||
ConflictReportName=SourceCode_Conflicts.txt
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
DestinationPath=Content/Localization/SourceCode
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=GenerateTextLocalizationReport
|
|
||||||
bWordCountReport=true
|
|
||||||
WordCountReportName=SourceCode.csv
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
DestinationPath=Content/Localization/SourceCode
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
PortableObjectName=SourceCode.po
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=InternationalizationExport
|
|
||||||
bImportLoc=true
|
|
||||||
LocalizedTextCollapseMode=ELocalizedTextCollapseMode::IdenticalTextIdAndSource
|
|
||||||
POFormat=EPortableObjectFormat::Unreal
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ImportLocalizedDialogue
|
|
||||||
RawAudioPath=
|
|
||||||
ImportedDialogueFolder=ImportedDialogue
|
|
||||||
bImportNativeAsSource=false
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
; THESE ARE GENERATED FILES, DO NOT EDIT DIRECTLY!
|
|
||||||
; USE THE LOCALIZATION DASHBOARD IN THE UNREAL EDITOR TO EDIT THE CONFIGURATION
|
|
||||||
[CommonSettings]
|
|
||||||
SourcePath=Content/Localization/SourceCode
|
|
||||||
DestinationPath=Content/Localization/SourceCode
|
|
||||||
NativeCulture=en
|
|
||||||
CulturesToGenerate=en
|
|
||||||
CulturesToGenerate=ko-KR
|
|
||||||
ManifestName=SourceCode.manifest
|
|
||||||
ArchiveName=SourceCode.archive
|
|
||||||
DialogueScriptName=SourceCodeDialogue.csv
|
|
||||||
|
|
||||||
[GatherTextStep0]
|
|
||||||
CommandletClass=ImportDialogueScript
|
|
||||||
|
|
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/Bow/AS_Bow_Idle_2_Aim_Fast_Bow.uasset
(Stored with Git LFS)
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/Bow/AS_Bow_Idle_2_Aim_Fast_Bow.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Aim_2_Idle.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Aim_2_Idle.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Aim_Pull.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Aim_Pull.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_2_Idle.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_2_Idle.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_2_Idle_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_2_Idle_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Aim_Pull.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Aim_Pull.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_L.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_L.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_L_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_L_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_R.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_R.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_R_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_45_R_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Start.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Start.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Start_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Start_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_LU.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_LU.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_LU_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_LU_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_RU.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_RU.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_RU_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Bwd_Stop_RU_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_L.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_L.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_L_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_L_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_R.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_R.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_R_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_45_R_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Start.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Start.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Start_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Start_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_LU.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_LU.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_LU_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_LU_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_RU.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_RU.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_RU_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Fwd_Stop_RU_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_01.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_01.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_01_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_01_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_180_01.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_180_01.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_180_02.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_B_180_02.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_F_01.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_F_01.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_F_01_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_F_01_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_01.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_01.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_01_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_01_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_02.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_02.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_02_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_InPlace_02_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_L_01.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_L_01.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_L_01_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_L_01_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_R_01.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_R_01.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_R_01_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_R_01_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_Turn180_B_01_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_Turn180_B_01_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_Turn180_B_02_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Hit_Reaction_Turn180_B_02_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Idle.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Idle.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Idle_2_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Idle_2_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Idle_2_Aim_Fast.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Idle_2_Aim_Fast.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Jump_Down.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Jump_Down.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Jump_Down_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Jump_Down_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Jump_Down_Long.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Jump_Down_Long.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Start.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Start.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Start_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Start_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_LU.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_LU.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_LU_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_LU_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_RU.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_RU.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_RU_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Left_Stop_RU_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Right.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Right.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Right_Aim.uasset
(Stored with Git LFS)
Normal file
BIN
hwanyoung2/Content/ArcherAnimationSet/Animations/InPlace/AS_Bow_InPlace_Crouch_Right_Aim.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user