mirror of
https://github.com/kuhyx/praca_magisterska.git
synced 2026-07-04 13:43:05 +02:00
feat: cpp part 2
This commit is contained in:
parent
e76ac00ad6
commit
6ac95265aa
4
games/unreal/BulletHellGame/BulletHellCPP/.ignore
Normal file
4
games/unreal/BulletHellGame/BulletHellCPP/.ignore
Normal file
@ -0,0 +1,4 @@
|
||||
/Intermediate
|
||||
/Saved
|
||||
/Content
|
||||
/.vscode
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
{
|
||||
"BuildId": "37670630",
|
||||
"Modules":
|
||||
{
|
||||
"BulletHellCPP": "libUnrealEditor-BulletHellCPP-2845.so"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,880 @@
|
||||
{
|
||||
"folders": [
|
||||
{
|
||||
"name": "BulletHellCPP",
|
||||
"path": "."
|
||||
},
|
||||
{
|
||||
"name": "UE5",
|
||||
"path": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"typescript.tsc.autoDetect": "off",
|
||||
"npm.autoDetect": "off",
|
||||
"terminal.integrated.env.linux": {
|
||||
"PATH": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/ThirdParty/DotNet/8.0.300/linux-x64:${env:PATH}",
|
||||
"DOTNET_ROOT": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/ThirdParty/DotNet/8.0.300/linux-x64",
|
||||
"DOTNET_HOST_PATH": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/ThirdParty/DotNet/8.0.300/linux-x64/dotnet",
|
||||
"DOTNET_MULTILEVEL_LOOKUP": "0",
|
||||
"DOTNET_ROLL_FORWARD": "LatestMajor"
|
||||
},
|
||||
"git.ignoreLimitWarning": true
|
||||
},
|
||||
"extensions": {
|
||||
"recommendations": [
|
||||
"ms-vscode.cpptools",
|
||||
"ms-dotnettools.csharp"
|
||||
]
|
||||
},
|
||||
"tasks": {
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "BulletHellCPP Linux Debug Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Debug Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP Linux Debug Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Debug Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux DebugGame Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux DebugGame Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP Linux DebugGame Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux DebugGame Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Development Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Development Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP Linux Development Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Development Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Test Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Test",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Test Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Test",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP Linux Test Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Test Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Test",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Shipping Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Shipping",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Shipping Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Shipping",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP Linux Shipping Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP Linux Shipping Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"Linux",
|
||||
"Shipping",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Debug Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Debug Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP LinuxArm64 Debug Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Debug Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 DebugGame Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 DebugGame Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP LinuxArm64 DebugGame Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 DebugGame Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Development Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Development Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP LinuxArm64 Development Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Development Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Test Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Test",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Test Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Test",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP LinuxArm64 Test Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Test Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Test",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Shipping Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Shipping",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Shipping Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Shipping",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPP LinuxArm64 Shipping Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPP LinuxArm64 Shipping Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPP",
|
||||
"LinuxArm64",
|
||||
"Shipping",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux Debug Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux Debug Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPPEditor Linux Debug Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux Debug Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"Debug",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux DebugGame Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux DebugGame Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPPEditor Linux DebugGame Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux DebugGame Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"DebugGame",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux Development Build",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux Development Rebuild",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"dependsOn": [
|
||||
"BulletHellCPPEditor Linux Development Clean"
|
||||
],
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "BulletHellCPPEditor Linux Development Clean",
|
||||
"group": "build",
|
||||
"command": "Engine/Build/BatchFiles/Linux/Build.sh",
|
||||
"args": [
|
||||
"BulletHellCPPEditor",
|
||||
"Linux",
|
||||
"Development",
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-waitmutex",
|
||||
"-clean"
|
||||
],
|
||||
"problemMatcher": "$msCompile",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"launch": {
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch BulletHellCPP (Debug)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/Binaries/Linux/UnrealGame-Linux-Debug",
|
||||
"preLaunchTask": "BulletHellCPP Linux Debug Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Launch BulletHellCPP (DebugGame)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/Binaries/Linux/UnrealGame-Linux-DebugGame",
|
||||
"preLaunchTask": "BulletHellCPP Linux DebugGame Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Launch BulletHellCPP (Development)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/Binaries/Linux/UnrealGame",
|
||||
"preLaunchTask": "BulletHellCPP Linux Development Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Launch BulletHellCPP (Test)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/Binaries/Linux/UnrealGame-Linux-Test",
|
||||
"preLaunchTask": "BulletHellCPP Linux Test Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Launch BulletHellCPP (Shipping)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/Binaries/Linux/UnrealGame-Linux-Shipping",
|
||||
"preLaunchTask": "BulletHellCPP Linux Shipping Build",
|
||||
"args": [
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Launch BulletHellCPPEditor (Debug)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/Linux/UnrealEditor-Linux-Debug",
|
||||
"preLaunchTask": "BulletHellCPPEditor Linux Debug Build",
|
||||
"args": [
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject"
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Launch BulletHellCPPEditor (DebugGame)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/Linux/UnrealEditor-Linux-DebugGame",
|
||||
"preLaunchTask": "BulletHellCPPEditor Linux DebugGame Build",
|
||||
"args": [
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject"
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Launch BulletHellCPPEditor (Development)",
|
||||
"request": "launch",
|
||||
"program": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/Linux/UnrealEditor",
|
||||
"preLaunchTask": "BulletHellCPPEditor Linux Development Build",
|
||||
"args": [
|
||||
"/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject"
|
||||
],
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin",
|
||||
"type": "cppdbg",
|
||||
"visualizerFile": "/home/kuhy/aur/unreal-engine-bin/Engine/Extras/VisualStudioDebugging/Unreal.natvis",
|
||||
"showDisplayString": true
|
||||
},
|
||||
{
|
||||
"name": "Generate Project Files",
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "UnrealBuildTool Linux Development Build",
|
||||
"program": "/home/kuhy/aur/unreal-engine-bin/Engine/Build/BatchFiles/RunUBT.bat",
|
||||
"args": [
|
||||
"-projectfiles",
|
||||
"-vscode",
|
||||
"-project=/home/kuhy/praca_magisterska/games/unreal/BulletHellGame/BulletHellCPP/BulletHellCPP.uproject",
|
||||
"-game",
|
||||
"-engine",
|
||||
"-dotnet"
|
||||
],
|
||||
"env": {
|
||||
"PATH": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/ThirdParty/DotNet/8.0.300/linux-x64:${env:PATH}",
|
||||
"DOTNET_ROOT": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/ThirdParty/DotNet/8.0.300/linux-x64",
|
||||
"DOTNET_HOST_PATH": "/home/kuhy/aur/unreal-engine-bin/Engine/Binaries/ThirdParty/DotNet/8.0.300/linux-x64/dotnet",
|
||||
"DOTNET_MULTILEVEL_LOOKUP": "0",
|
||||
"DOTNET_ROLL_FORWARD": "LatestMajor"
|
||||
},
|
||||
"console": "internalConsole",
|
||||
"internalConsoleOptions": "openOnSessionStart",
|
||||
"stopAtEntry": false,
|
||||
"cwd": "/home/kuhy/aur/unreal-engine-bin"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
{
|
||||
"FileVersion": 3,
|
||||
"EngineAssociation": "5.5",
|
||||
"Category": "",
|
||||
"Description": "",
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "BulletHellCPP",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "Default",
|
||||
"AdditionalDependencies": [
|
||||
"Engine"
|
||||
]
|
||||
}
|
||||
],
|
||||
"Plugins": [
|
||||
{
|
||||
"Name": "ModelingToolsEditorMode",
|
||||
"Enabled": true,
|
||||
"TargetAllowList": [
|
||||
"Editor"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,254 @@
|
||||
|
||||
|
||||
[/Script/EngineSettings.GameMapsSettings]
|
||||
GameDefaultMap=/Engine/Maps/Templates/OpenWorld
|
||||
|
||||
[/Script/Engine.RendererSettings]
|
||||
r.Mobile.ShadingPath=0
|
||||
r.Mobile.AllowDeferredShadingOpenGL=False
|
||||
r.Mobile.SupportGPUScene=True
|
||||
r.Mobile.AntiAliasing=1
|
||||
r.Mobile.FloatPrecisionMode=0
|
||||
r.Mobile.AllowDitheredLODTransition=False
|
||||
r.Mobile.VirtualTextures=False
|
||||
r.DiscardUnusedQuality=False
|
||||
r.AllowOcclusionQueries=True
|
||||
r.MinScreenRadiusForLights=0.030000
|
||||
r.MinScreenRadiusForDepthPrepass=0.030000
|
||||
r.PrecomputedVisibilityWarning=False
|
||||
r.TextureStreaming=True
|
||||
Compat.UseDXT5NormalMaps=False
|
||||
r.VirtualTextures=False
|
||||
r.VT.EnableAutoImport=True
|
||||
r.VirtualTexturedLightmaps=False
|
||||
r.VT.AnisotropicFiltering=False
|
||||
bEnableVirtualTextureOpacityMask=False
|
||||
bEnableVirtualTexturePostProcessing=False
|
||||
r.VT.TileSize=128
|
||||
r.VT.TileBorderSize=4
|
||||
r.vt.FeedbackFactor=16
|
||||
r.MeshPaintVirtualTexture.TileSize=32
|
||||
r.MeshPaintVirtualTexture.TileBorderSize=2
|
||||
r.MeshPaintVirtualTexture.UseCompression=True
|
||||
r.StaticMesh.DefaultMeshPaintTextureSupport=True
|
||||
r.MeshPaintVirtualTexture.DefaultTexelsPerVertex=4
|
||||
r.MeshPaintVirtualTexture.MaxTextureSize=4096
|
||||
r.vt.rvt.EnableBaseColor=True
|
||||
r.vt.rvt.EnableBaseColorRoughness=True
|
||||
r.vt.rvt.EnableBaseColorSpecular=True
|
||||
r.vt.rvt.EnableMask4=True
|
||||
r.vt.rvt.EnableWorldHeight=True
|
||||
r.vt.rvt.EnableDisplacement=True
|
||||
r.vt.rvt.HighQualityPerPixelHeight=True
|
||||
WorkingColorSpaceChoice=sRGB
|
||||
RedChromaticityCoordinate=(X=0.640000,Y=0.330000)
|
||||
GreenChromaticityCoordinate=(X=0.300000,Y=0.600000)
|
||||
BlueChromaticityCoordinate=(X=0.150000,Y=0.060000)
|
||||
WhiteChromaticityCoordinate=(X=0.312700,Y=0.329000)
|
||||
r.LegacyLuminanceFactors=False
|
||||
r.ClearCoatNormal=False
|
||||
r.DynamicGlobalIlluminationMethod=1
|
||||
r.ReflectionMethod=1
|
||||
r.ReflectionCaptureResolution=128
|
||||
r.ReflectionEnvironmentLightmapMixBasedOnRoughness=True
|
||||
r.Lumen.HardwareRayTracing=True
|
||||
r.Lumen.HardwareRayTracing.LightingMode=0
|
||||
r.Lumen.TranslucencyReflections.FrontLayer.EnableForProject=False
|
||||
r.Lumen.TraceMeshSDFs=1
|
||||
r.Lumen.ScreenTracingSource=0
|
||||
r.Lumen.Reflections.HardwareRayTracing.Translucent.Refraction.EnableForProject=True
|
||||
r.MegaLights.EnableForProject=False
|
||||
r.RayTracing.Shadows=False
|
||||
r.Shadow.Virtual.Enable=1
|
||||
r.RayTracing=True
|
||||
r.RayTracing.UseTextureLod=False
|
||||
r.PathTracing=True
|
||||
r.GenerateMeshDistanceFields=True
|
||||
r.DistanceFields.DefaultVoxelDensity=0.200000
|
||||
r.Nanite.ProjectEnabled=True
|
||||
r.AllowStaticLighting=False
|
||||
r.NormalMapsForStaticLighting=False
|
||||
r.ForwardShading=False
|
||||
r.VertexFoggingForOpaque=True
|
||||
r.SeparateTranslucency=True
|
||||
r.TranslucentSortPolicy=0
|
||||
TranslucentSortAxis=(X=0.000000,Y=-1.000000,Z=0.000000)
|
||||
r.LocalFogVolume.ApplyOnTranslucent=False
|
||||
xr.VRS.FoveationLevel=0
|
||||
xr.VRS.DynamicFoveation=False
|
||||
r.CustomDepth=1
|
||||
r.CustomDepthTemporalAAJitter=True
|
||||
r.PostProcessing.PropagateAlpha=False
|
||||
r.Deferred.SupportPrimitiveAlphaHoldout=False
|
||||
r.DefaultFeature.Bloom=True
|
||||
r.DefaultFeature.AmbientOcclusion=True
|
||||
r.DefaultFeature.AmbientOcclusionStaticFraction=True
|
||||
r.DefaultFeature.AutoExposure=False
|
||||
r.DefaultFeature.AutoExposure.Method=0
|
||||
r.DefaultFeature.AutoExposure.Bias=1.000000
|
||||
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True
|
||||
r.DefaultFeature.LocalExposure.HighlightContrastScale=0.800000
|
||||
r.DefaultFeature.LocalExposure.ShadowContrastScale=0.800000
|
||||
r.DefaultFeature.MotionBlur=False
|
||||
r.DefaultFeature.LensFlare=False
|
||||
r.TemporalAA.Upsampling=True
|
||||
r.AntiAliasingMethod=0
|
||||
r.MSAACount=4
|
||||
r.DefaultFeature.LightUnits=1
|
||||
r.DefaultBackBufferPixelFormat=4
|
||||
r.ScreenPercentage.Default=100.000000
|
||||
r.ScreenPercentage.Default.Desktop.Mode=1
|
||||
r.ScreenPercentage.Default.Mobile.Mode=0
|
||||
r.ScreenPercentage.Default.VR.Mode=0
|
||||
r.ScreenPercentage.Default.PathTracer.Mode=0
|
||||
r.Shadow.UnbuiltPreviewInGame=True
|
||||
r.StencilForLODDither=False
|
||||
r.EarlyZPass=3
|
||||
r.EarlyZPassOnlyMaterialMasking=False
|
||||
r.Shadow.CSMCaching=False
|
||||
r.DBuffer=True
|
||||
r.ClearSceneMethod=1
|
||||
r.VelocityOutputPass=0
|
||||
r.Velocity.EnableVertexDeformation=2
|
||||
r.SelectiveBasePassOutputs=False
|
||||
bDefaultParticleCutouts=False
|
||||
fx.GPUSimulationTextureSizeX=1024
|
||||
fx.GPUSimulationTextureSizeY=1024
|
||||
r.AllowGlobalClipPlane=False
|
||||
r.GBufferFormat=1
|
||||
r.MorphTarget.Mode=True
|
||||
r.MorphTarget.MaxBlendWeight=5.000000
|
||||
r.SupportSkyAtmosphere=True
|
||||
r.SupportSkyAtmosphereAffectsHeightFog=True
|
||||
r.SupportExpFogMatchesVolumetricFog=False
|
||||
r.SupportLocalFogVolumes=True
|
||||
r.SupportCloudShadowOnForwardLitTranslucent=False
|
||||
r.LightFunctionAtlas.Format=0
|
||||
r.VolumetricFog.LightFunction=True
|
||||
r.Deferred.UsesLightFunctionAtlas=True
|
||||
r.SingleLayerWater.UsesLightFunctionAtlas=False
|
||||
r.Translucent.UsesLightFunctionAtlas=False
|
||||
r.Translucent.UsesIESProfiles=False
|
||||
r.Translucent.UsesRectLights=False
|
||||
r.GPUCrashDebugging=False
|
||||
vr.InstancedStereo=False
|
||||
r.MobileHDR=True
|
||||
vr.MobileMultiView=False
|
||||
r.Mobile.UseHWsRGBEncoding=False
|
||||
vr.RoundRobinOcclusion=False
|
||||
r.MeshStreaming=False
|
||||
r.HeterogeneousVolumes=True
|
||||
r.HeterogeneousVolumes.Shadows=False
|
||||
r.Translucency.HeterogeneousVolumes=False
|
||||
r.WireframeCullThreshold=5.000000
|
||||
r.SupportStationarySkylight=True
|
||||
r.SupportLowQualityLightmaps=True
|
||||
r.SupportPointLightWholeSceneShadows=True
|
||||
r.Shadow.TranslucentPerObject.ProjectEnabled=False
|
||||
r.Water.SingleLayerWater.SupportCloudShadow=False
|
||||
r.Substrate=False
|
||||
r.Substrate.OpaqueMaterialRoughRefraction=False
|
||||
r.Refraction.Blur=True
|
||||
r.Substrate.Debug.AdvancedVisualizationShaders=False
|
||||
r.Material.RoughDiffuse=False
|
||||
r.Material.EnergyConservation=False
|
||||
r.Material.DefaultAutoMaterialUsage=True
|
||||
r.OIT.SortedPixels=False
|
||||
r.HairStrands.LODMode=True
|
||||
r.SkinCache.CompileShaders=True
|
||||
r.VRS.Support=True
|
||||
r.SkinCache.SkipCompilingGPUSkinVF=False
|
||||
r.SkinCache.DefaultBehavior=1
|
||||
r.SkinCache.SceneMemoryLimitInMB=128.000000
|
||||
r.Mobile.EnableStaticAndCSMShadowReceivers=True
|
||||
r.Mobile.EnableMovableLightCSMShaderCulling=True
|
||||
r.Mobile.Forward.EnableLocalLights=1
|
||||
r.Mobile.Forward.EnableClusteredReflections=False
|
||||
r.Mobile.AllowDistanceFieldShadows=True
|
||||
r.Mobile.EnableMovableSpotlightsShadow=False
|
||||
r.GPUSkin.Support16BitBoneIndex=False
|
||||
r.GPUSkin.Limit2BoneInfluences=False
|
||||
r.SupportDepthOnlyIndexBuffers=False
|
||||
r.SupportReversedIndexBuffers=False
|
||||
r.Mobile.AmbientOcclusion=False
|
||||
r.Mobile.DBuffer=False
|
||||
r.GPUSkin.UnlimitedBoneInfluences=False
|
||||
r.GPUSkin.AlwaysUseDeformerForUnlimitedBoneInfluences=False
|
||||
r.GPUSkin.UnlimitedBoneInfluencesThreshold=8
|
||||
DefaultBoneInfluenceLimit=(Default=0,PerPlatform=())
|
||||
MaxSkinBones=(Default=65536,PerPlatform=(("Mobile", 256)))
|
||||
r.Mobile.PlanarReflectionMode=0
|
||||
r.Mobile.ScreenSpaceReflections=False
|
||||
r.Mobile.SupportsGen4TAA=True
|
||||
bStreamSkeletalMeshLODs=(Default=False,PerPlatform=())
|
||||
bDiscardSkeletalMeshOptionalLODs=(Default=False,PerPlatform=())
|
||||
VisualizeCalibrationColorMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor
|
||||
VisualizeCalibrationCustomMaterialPath=None
|
||||
VisualizeCalibrationGrayscaleMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale
|
||||
|
||||
[/Script/WindowsTargetPlatform.WindowsTargetSettings]
|
||||
DefaultGraphicsRHI=DefaultGraphicsRHI_DX12
|
||||
DefaultGraphicsRHI=DefaultGraphicsRHI_DX12
|
||||
-D3D12TargetedShaderFormats=PCD3D_SM5
|
||||
+D3D12TargetedShaderFormats=PCD3D_SM6
|
||||
-D3D11TargetedShaderFormats=PCD3D_SM5
|
||||
+D3D11TargetedShaderFormats=PCD3D_SM5
|
||||
Compiler=Default
|
||||
AudioSampleRate=48000
|
||||
AudioCallbackBufferFrameSize=1024
|
||||
AudioNumBuffersToEnqueue=1
|
||||
AudioMaxChannels=0
|
||||
AudioNumSourceWorkers=4
|
||||
SpatializationPlugin=
|
||||
SourceDataOverridePlugin=
|
||||
ReverbPlugin=
|
||||
OcclusionPlugin=
|
||||
CompressionOverrides=(bOverrideCompressionTimes=False,DurationThreshold=5.000000,MaxNumRandomBranches=0,SoundCueQualityIndex=0)
|
||||
CacheSizeKB=65536
|
||||
MaxChunkSizeOverrideKB=0
|
||||
bResampleForDevice=False
|
||||
MaxSampleRate=48000.000000
|
||||
HighSampleRate=32000.000000
|
||||
MedSampleRate=24000.000000
|
||||
LowSampleRate=12000.000000
|
||||
MinSampleRate=8000.000000
|
||||
CompressionQualityModifier=1.000000
|
||||
AutoStreamingThreshold=0.000000
|
||||
SoundCueCookQualityIndex=-1
|
||||
|
||||
[/Script/LinuxTargetPlatform.LinuxTargetSettings]
|
||||
-TargetedRHIs=SF_VULKAN_SM5
|
||||
+TargetedRHIs=SF_VULKAN_SM6
|
||||
|
||||
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
||||
TargetedHardwareClass=Desktop
|
||||
AppliedTargetedHardwareClass=Desktop
|
||||
DefaultGraphicsPerformance=Scalable
|
||||
AppliedDefaultGraphicsPerformance=Scalable
|
||||
|
||||
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
|
||||
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
||||
|
||||
[/Script/Engine.UserInterfaceSettings]
|
||||
bAuthorizeAutomaticWidgetVariableCreation=False
|
||||
FontDPIPreset=Standard
|
||||
FontDPI=72
|
||||
|
||||
[/Script/Engine.Engine]
|
||||
+ActiveGameNameRedirects=(OldGameName="TP_Blank",NewGameName="/Script/BulletHellCPP")
|
||||
+ActiveGameNameRedirects=(OldGameName="/Script/TP_Blank",NewGameName="/Script/BulletHellCPP")
|
||||
|
||||
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
||||
bEnablePlugin=True
|
||||
bAllowNetworkConnection=True
|
||||
SecurityToken=C3645D9564B44FC188AF3B6DD073F851
|
||||
bIncludeInShipping=False
|
||||
bAllowExternalStartInShipping=False
|
||||
bCompileAFSProject=False
|
||||
bUseCompression=False
|
||||
bLogFiles=False
|
||||
bReportStats=False
|
||||
ConnectionType=USBOnly
|
||||
bUseManualIPAddress=False
|
||||
ManualIPAddress=
|
||||
|
||||
@ -0,0 +1,3 @@
|
||||
|
||||
[/Script/EngineSettings.GeneralProjectSettings]
|
||||
ProjectID=548B6B768EF14EF39B6D32DD46342903
|
||||
@ -0,0 +1,84 @@
|
||||
[/Script/Engine.InputSettings]
|
||||
-AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
||||
-AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
||||
-AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
||||
-AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
||||
-AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f))
|
||||
-AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f))
|
||||
-AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MouseWheelAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_LeftTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_RightTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_Special_Left_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Gamepad_Special_Left_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Vive_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Vive_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Vive_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Vive_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Vive_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Vive_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
bAltEnterTogglesFullscreen=True
|
||||
bF11TogglesFullscreen=True
|
||||
bUseMouseForTouch=False
|
||||
bEnableMouseSmoothing=True
|
||||
bEnableFOVScaling=True
|
||||
bCaptureMouseOnLaunch=True
|
||||
bEnableLegacyInputScales=True
|
||||
bEnableMotionControls=True
|
||||
bFilterInputByPlatformUser=False
|
||||
bShouldFlushPressedKeysOnViewportFocusLost=True
|
||||
bAlwaysShowTouchInterface=False
|
||||
bShowConsoleOnFourFingerTap=True
|
||||
bEnableGestureRecognizer=False
|
||||
bUseAutocorrect=False
|
||||
DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown
|
||||
DefaultViewportMouseLockMode=LockOnCapture
|
||||
FOVScale=0.011110
|
||||
DoubleClickTime=0.200000
|
||||
DefaultPlayerInputClass=/Script/EnhancedInput.EnhancedPlayerInput
|
||||
DefaultInputComponentClass=/Script/EnhancedInput.EnhancedInputComponent
|
||||
DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks
|
||||
-ConsoleKeys=Tilde
|
||||
+ConsoleKeys=Tilde
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
games/unreal/BulletHellGame/BulletHellCPP/Content/NewMap.umap
Normal file
BIN
games/unreal/BulletHellGame/BulletHellCPP/Content/NewMap.umap
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user