Include Unreal project and reorganise folders
This commit is contained in:
parent
418dac8fd4
commit
13359f1e52
|
@ -1,16 +1,27 @@
|
|||
# Unreal folders
|
||||
Binaries
|
||||
Build
|
||||
Debug
|
||||
DerivedDataCache
|
||||
Intermediate
|
||||
Saved
|
||||
|
||||
# Other
|
||||
Doxygen
|
||||
Util/Build
|
||||
Util/Install
|
||||
./Dist
|
||||
./Doxygen
|
||||
./Util/Build
|
||||
./Util/Install
|
||||
|
||||
*.VC.db
|
||||
*.VC.opendb
|
||||
*.kdev4
|
||||
*.log
|
||||
*.pb.cc
|
||||
*.pb.h
|
||||
*.pid
|
||||
_*
|
||||
*.pri
|
||||
*.pro
|
||||
*.py[cod]
|
||||
*.sln
|
||||
*.stackdump
|
||||
*.sublime-workspace
|
||||
*.workspace
|
||||
*CodeCompletionFolders.txt
|
||||
*CodeLitePreProcessor.txt
|
||||
*_pb2.py
|
||||
.codelite
|
||||
.tags*
|
||||
.vs
|
||||
__pycache__
|
||||
core
|
||||
|
|
|
@ -0,0 +1,131 @@
|
|||
{
|
||||
"folders":
|
||||
[
|
||||
{
|
||||
"path": ".",
|
||||
"folder_exclude_patterns":
|
||||
[
|
||||
"__pycache__",
|
||||
".clang",
|
||||
".codelite",
|
||||
".kdev4",
|
||||
".vs",
|
||||
"Build",
|
||||
"Binaries",
|
||||
"Content",
|
||||
"DerivedDataCache",
|
||||
"Intermediate",
|
||||
"Saved"
|
||||
],
|
||||
"file_exclude_patterns":
|
||||
[
|
||||
"*.VC.db",
|
||||
"*.VC.opendb",
|
||||
"*.kdev4",
|
||||
"*.pri",
|
||||
"*.pro",
|
||||
"*.py[cod]",
|
||||
"*.sln",
|
||||
"*.stackdump",
|
||||
"*.sublime-workspace",
|
||||
"*.uasset",
|
||||
"*.umap",
|
||||
"*.workspace",
|
||||
"*CodeCompletionFolders.txt",
|
||||
"*CodeLitePreProcessor.txt",
|
||||
".tags*",
|
||||
"core"
|
||||
]
|
||||
}
|
||||
],
|
||||
"settings":
|
||||
{
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true
|
||||
},
|
||||
"build_systems":
|
||||
[
|
||||
{
|
||||
"name": "CARLA - Rebuild script",
|
||||
"working_dir": "${project_path}",
|
||||
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "./Rebuild.sh"
|
||||
},
|
||||
"windows":
|
||||
{
|
||||
"shell_cmd": "start Rebuild.bat"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CARLA - make CarlaUE4",
|
||||
"working_dir": "${project_path}/Unreal/CarlaUE4",
|
||||
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
|
||||
"syntax": "Packages/Makefile/Make Output.sublime-syntax",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "make CarlaUE4"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CARLA - make CarlaUE4 ARGS=-clean",
|
||||
"working_dir": "${project_path}/Unreal/CarlaUE4",
|
||||
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
|
||||
"syntax": "Packages/Makefile/Make Output.sublime-syntax",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "make CarlaUE4 ARGS=-clean"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CARLA - make CarlaUE4Editor",
|
||||
"working_dir": "${project_path}/Unreal/CarlaUE4",
|
||||
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
|
||||
"syntax": "Packages/Makefile/Make Output.sublime-syntax",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "make CarlaUE4Editor"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CARLA - make CarlaUE4Editor ARGS=-clean",
|
||||
"working_dir": "${project_path}/Unreal/CarlaUE4",
|
||||
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
|
||||
"syntax": "Packages/Makefile/Make Output.sublime-syntax",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "make CarlaUE4Editor ARGS=-clean"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CARLA - make CarlaServer",
|
||||
"working_dir": "${project_path}",
|
||||
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
|
||||
"syntax": "Packages/Makefile/Make Output.sublime-syntax",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "make"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CARLA - check CarlaServer",
|
||||
"working_dir": "${project_path}",
|
||||
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
|
||||
"syntax": "Packages/Makefile/Make Output.sublime-syntax",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "make check"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CARLA - clean CarlaServer",
|
||||
"working_dir": "${project_path}",
|
||||
"syntax": "Packages/Makefile/Make Output.sublime-syntax",
|
||||
"linux":
|
||||
{
|
||||
"shell_cmd": "make clean"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,4 @@
|
|||
CARLA
|
||||
=====
|
||||
|
||||
Plugin for Unreal Engine 4.
|
||||
CARLA Simulator
|
||||
===============
|
||||
|
||||
See [CARLA Documentation](Docs/index.md).
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
@echo off
|
||||
|
||||
echo Deleting intermediate folders...
|
||||
FOR %%G IN (Binaries,Intermediate,Plugins\Carla\Binaries,Plugins\Carla\Intermediate) DO (if exist %%G ( rmdir /s/q %%G ))
|
||||
|
||||
echo Making CarlaServer...
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||
START /wait cmd.exe /k "cd Plugins\Carla & make clean default & pause & exit"
|
||||
|
||||
echo Launch editor...
|
||||
start CarlaUE4.uproject
|
|
@ -0,0 +1,39 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
PLUGIN_FOLDER=./Plugins/Carla
|
||||
PLUGIN_INTERMEDIATE_FOLDERS="Binaries Intermediate"
|
||||
CARLAUE4_INTERMEDIATE_FOLDERS="Binaries Build Intermediate DerivedDataCache"
|
||||
|
||||
function fatal_error {
|
||||
echo -e "\033[0;31mERROR: $1\033[0m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
function log {
|
||||
echo -e "\033[0;33m$1\033[0m"
|
||||
}
|
||||
|
||||
if [ ! -d "${UE4_ROOT}" ]; then
|
||||
fatal_error "UE4_ROOT is not defined, or points to a non-existant directory, please set this environment variable."
|
||||
fi
|
||||
|
||||
log "Cleaning up CARLA Plugin..."
|
||||
(cd ${PLUGIN_FOLDER} && rm -Rf ${PLUGIN_INTERMEDIATE_FOLDERS})
|
||||
log "Cleaning up CARLAUE4..."
|
||||
rm -Rf ${CARLAUE4_INTERMEDIATE_FOLDERS}
|
||||
|
||||
log "Making CARLA Plugin dependencies..."
|
||||
(cd ${PLUGIN_FOLDER} && make clean && make debug && make release)
|
||||
|
||||
# This command usually fails but we can continue anyway.
|
||||
set +e
|
||||
log "Generate Unreal project files..."
|
||||
${UE4_ROOT}/GenerateProjectFiles.sh -project="${PWD}/CarlaUE4.uproject" -game -engine
|
||||
set -e
|
||||
|
||||
log "Build CarlaUE4 project..."
|
||||
make CarlaUE4Editor
|
||||
|
||||
log "Launch editor..."
|
||||
${UE4_ROOT}/Engine/Binaries/Linux/UE4Editor "${PWD}/CarlaUE4.uproject"
|
|
@ -0,0 +1,18 @@
|
|||
./Binaries
|
||||
./Build
|
||||
./Debug
|
||||
./DerivedDataCache
|
||||
./Intermediate
|
||||
./Saved
|
||||
./Plugins/Carla/Binaries
|
||||
./Plugins/Carla/Build
|
||||
./Plugins/Carla/Debug
|
||||
./Plugins/Carla/DerivedDataCache
|
||||
./Plugins/Carla/Intermediate
|
||||
./Plugins/Carla/Saved
|
||||
|
||||
./Content
|
||||
./Config/CarlaSettings.ini
|
||||
|
||||
./CMakeLists.txt
|
||||
./Makefile
|
|
@ -0,0 +1,133 @@
|
|||
## CARLAUE4 0.5.4
|
||||
|
||||
* Updated CARLA plugin to 0.5.4
|
||||
* Rename maps
|
||||
* Fixed Carla-Cola machine falling at begin play
|
||||
|
||||
## CARLAUE4 0.5.3
|
||||
|
||||
* Updated CARLA plugin to 0.5.3
|
||||
* Fixed issues with weather
|
||||
* Fixed missing building
|
||||
|
||||
## CARLAUE4 0.5.2
|
||||
|
||||
* Updated CARLA plugin to 0.5.2
|
||||
* Fixed some issues with the dynamic weather not looking as it used to do
|
||||
* Fixed some collision boxes missing
|
||||
|
||||
## CARLAUE4 0.5.1
|
||||
|
||||
* Updated CARLA plugin to 0.5.1
|
||||
* Fixed missing floor on CARLA_ORIGIN_0
|
||||
* Changed sidewalk texture
|
||||
* Improvements on the physics of some vehicles
|
||||
* More props and decals added to the cities
|
||||
|
||||
## CARLAUE4 0.5.0
|
||||
|
||||
* Upgraded to Unreal Engine 4.17
|
||||
* Updated CARLA plugin to 0.5.0
|
||||
* Added more content; 7 vehicles, 30 pedestrians, many decals and props
|
||||
* Randomized pedestrian clothing
|
||||
* Many improvements and fixes to the city levels and assets
|
||||
* Added sub-surface scattering to vegetation
|
||||
* Added key binding to change weather during play
|
||||
* Added key binding to toggle autopilot mode
|
||||
* Added a second camera to the player
|
||||
* Added SanQuirze map
|
||||
|
||||
## CARLAUE4 0.4.6
|
||||
|
||||
* Updated CARLA plugin to 0.4.6
|
||||
* Some map fixes, adjust weather presets specific for each level
|
||||
* Fixed regression that some walkers may go at extremely slow and fast speeds
|
||||
|
||||
## CARLAUE4 0.4.5
|
||||
|
||||
* Updated CARLA plugin to 0.4.5
|
||||
* Removed rotation of map CARLA_ORIGIN_1
|
||||
|
||||
## CARLAUE4 0.4.4
|
||||
|
||||
* Updated CARLA plugin to 0.4.4
|
||||
* Few improvements to the city assets
|
||||
|
||||
## CARLAUE4 0.4.3
|
||||
|
||||
* Updated CARLA plugin to 0.4.3
|
||||
* Tune several vehicles' physics and engine
|
||||
* Fixed issue with vehicles bouncing back after hitting a pedestrian
|
||||
* Add bigger box to pedestrians to avoid accidents
|
||||
* Make vehicles spawn in order instead of randomly
|
||||
|
||||
## CARLAUE4 0.4.2
|
||||
|
||||
* Updated CARLA plugin to 0.4.2
|
||||
* Improved the physics of some vehicles
|
||||
* Tweak the city for better AI of other vehicles
|
||||
|
||||
## CARLAUE4 0.4.1
|
||||
|
||||
* Updated CARLA plugin to 0.4.1
|
||||
* Fixed wrong semantic segmentation label of the poles of traffic lights and signs
|
||||
* Added randomized vehicle license plates
|
||||
* Few improvements to the city assets
|
||||
|
||||
## CARLAUE4 0.4.0
|
||||
|
||||
* Updated CARLA plugin to 0.4.0
|
||||
* Added randomized pedestrians with their AI and animations
|
||||
* Added other vehicles with their AI and physics
|
||||
* Added traffic lights and signs
|
||||
* Tweaked capture image to look similar to main camera
|
||||
* Changed car input to match settings in plugin
|
||||
* General improvements to levels and assets
|
||||
* Fixed issue with server not running below 30 fps at fixed frame rate, added physics sub-stepping
|
||||
* Fixed issues with some weather settings
|
||||
|
||||
## CARLAUE4 0.3.0
|
||||
|
||||
* Updated CARLA plugin to 0.3.0
|
||||
* Split road meshes for intersections and turns for better precision of the road map
|
||||
* Added presets for dynamic weather
|
||||
* Implemented nav-mesh and spawn points for pedestrians
|
||||
* Added new cars
|
||||
* Added dynamic street lights
|
||||
* General improvements to levels and assets
|
||||
* Make the car jump
|
||||
|
||||
## CARLAUE4 0.2.4
|
||||
|
||||
* Updated CARLA plugin to 0.2.4
|
||||
* Reduced size of maps
|
||||
* Some optimizations in the vegetation
|
||||
* Implemented more LODS
|
||||
|
||||
## CARLAUE4 0.2.3
|
||||
|
||||
* Updated CARLA plugin to 0.2.3
|
||||
* Make custom depth pass disable by default (semantic segmentation won't work by default)
|
||||
* Fixed road width in T-intersections
|
||||
* Implement road LOD
|
||||
* Fixed missing assets
|
||||
|
||||
## CARLAUE4 0.2.2
|
||||
|
||||
* Updated CARLA plugin to 0.2.2
|
||||
* Added boundaries to the map
|
||||
* Several fixes in the map content
|
||||
|
||||
## CARLAUE4 0.2.1
|
||||
|
||||
* Updated CARLA plugin to 0.2.1
|
||||
* Fixed random crash due to an invalid player start position
|
||||
|
||||
## CARLAUE4 0.2.0
|
||||
|
||||
* Updated CARLA plugin to 0.2.0
|
||||
* Added more content
|
||||
|
||||
## CARLAUE4 0.1.1
|
||||
|
||||
* Added basic content and functionality
|
Binary file not shown.
After Width: | Height: | Size: 62 KiB |
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"FileVersion": 3,
|
||||
"EngineAssociation": "4.17",
|
||||
"Category": "",
|
||||
"Description": "",
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "CarlaUE4",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "Default",
|
||||
"AdditionalDependencies": [
|
||||
"Engine",
|
||||
"PhysXVehicles",
|
||||
"Carla",
|
||||
"CoreUObject"
|
||||
]
|
||||
}
|
||||
],
|
||||
"Plugins": [
|
||||
{
|
||||
"Name": "Carla",
|
||||
"Enabled": true
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,421 @@
|
|||
[Default]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=50
|
||||
SunDirectionalLightIntensity=15.092
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=16.296
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.034046,G=0.109247,B=0.295000,A=1.000000)
|
||||
HorizonColor=(R=0.659853,G=0.862215,B=1.000000,A=1.000000)
|
||||
CloudColor=(R=0.855778,G=0.919005,B=1.000000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=5.505
|
||||
SkyLightColor=(R=0.149650,G=0.161819,B=0.205000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[ClearNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=50
|
||||
SunDirectionalLightIntensity=15.092
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=16.296
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.034046,G=0.109247,B=0.295000,A=1.000000)
|
||||
HorizonColor=(R=0.659853,G=0.862215,B=1.000000,A=1.000000)
|
||||
CloudColor=(R=0.855778,G=0.919005,B=1.000000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=5.505
|
||||
SkyLightColor=(R=0.179300,G=0.188248,B=0.220000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[CloudyNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.835
|
||||
SunDirectionalLightColor=(R=1.000000,G=0.862295,B=0.475000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.143627,G=0.159235,B=0.190000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=36
|
||||
SkyLightColor=(R=0.166985,G=0.176777,B=0.240000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=3.67
|
||||
SunDirectionalLightIntensity=20.184
|
||||
SunDirectionalLightColor=(R=1.000000,G=0.862295,B=0.475000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=17.431
|
||||
HorizontFalloff=5.752
|
||||
ZenithColor=(R=0.000000,G=0.085618,B=0.715000,A=1.000000)
|
||||
HorizonColor=(R=0.532350,G=0.590445,B=0.630000,A=1.000000)
|
||||
CloudColor=(R=0.143627,G=0.159235,B=0.190000,A=1.000000)
|
||||
OverallSkyColor=(R=0.660000,G=0.630413,B=0.518100,A=1.000000)
|
||||
SkyLightIntensity=14.679
|
||||
SkyLightColor=(R=0.135000,G=0.120150,B=0.075600,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=54.128
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetCloudyNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.835
|
||||
SunDirectionalLightColor=(R=1.000000,G=0.862295,B=0.475000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
HorizonColor=(R=0.000000,G=0.000000,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=0.230559,G=0.255614,B=0.305000,A=1.000000)
|
||||
OverallSkyColor=(R=0.660000,G=0.630413,B=0.518100,A=1.000000)
|
||||
SkyLightIntensity=60
|
||||
SkyLightColor=(R=0.230000,G=0.204700,B=0.128800,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=47.706
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[MidRainyNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.33
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=14.761
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.370000,G=0.370000,B=0.370000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.042789,G=0.045950,B=0.050000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=70
|
||||
SkyLightColor=(R=0.119882,G=0.121557,B=0.170000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=40
|
||||
PrecipitationAccumulation=50
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[HardRainNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.33
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.580000,G=0.580000,B=0.580000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.089857,G=0.096495,B=0.105000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=37.66
|
||||
SkyLightColor=(R=0.190125,G=0.191290,B=0.225000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=70.826
|
||||
PrecipitationAccumulation=87.248
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[SoftRainNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.33
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.440725,G=0.473285,B=0.515000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=3
|
||||
SkyLightColor=(R=0.525365,G=0.532706,B=0.745000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=10.55
|
||||
PrecipitationAccumulation=61.927
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[ClearSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=1.835
|
||||
SunDirectionalLightIntensity=50
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347470,B=0.170100,A=1.000000)
|
||||
SunIndirectLightIntensity=73.394
|
||||
CloudOpacity=13.344
|
||||
HorizontFalloff=0.917
|
||||
ZenithColor=(R=0.046375,G=0.044100,B=0.105000,A=1.000000)
|
||||
HorizonColor=(R=0.745000,G=0.219006,B=0.046649,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.561587,B=0.189305,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=14
|
||||
SkyLightColor=(R=0.181188,G=0.177630,B=0.260000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[CloudySunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=67.89
|
||||
SunDirectionalLightIntensity=6.422
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=35.78
|
||||
HorizontFalloff=1.835
|
||||
ZenithColor=(R=0.192397,G=0.130043,B=0.245000,A=1.000000)
|
||||
HorizonColor=(R=1.000000,G=0.007579,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.518982,B=0.175000,A=1.000000)
|
||||
OverallSkyColor=(R=0.288600,G=0.306730,B=0.370000,A=1.000000)
|
||||
SkyLightIntensity=46.331
|
||||
SkyLightColor=(R=0.193050,G=0.195113,B=0.270000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=25.688
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=17.596
|
||||
HorizontFalloff=1.165
|
||||
ZenithColor=(R=0.046375,G=0.044100,B=0.105000,A=1.000000)
|
||||
HorizonColor=(R=0.695000,G=0.379445,B=0.150922,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.561587,B=0.189305,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=82.568
|
||||
SkyLightColor=(R=0.269874,G=0.264000,B=0.400000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=65.046
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetCloudySunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=67.89
|
||||
SunDirectionalLightIntensity=25.688
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=31.514
|
||||
HorizontFalloff=1.165
|
||||
ZenithColor=(R=0.046375,G=0.044100,B=0.105000,A=1.000000)
|
||||
HorizonColor=(R=0.695000,G=0.379445,B=0.150922,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.561587,B=0.189305,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=50
|
||||
SkyLightColor=(R=0.083625,G=0.081983,B=0.120000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=50
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
|
||||
[MidRainSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=13.761
|
||||
SunDirectionalLightIntensity=12.587
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=44.037
|
||||
HorizontFalloff=1.835
|
||||
ZenithColor=(R=0.154038,G=0.101968,B=0.295000,A=1.000000)
|
||||
HorizonColor=(R=1.000000,G=0.655600,B=0.160000,A=1.000000)
|
||||
CloudColor=(R=0.555000,G=0.314891,B=0.111000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=40
|
||||
SkyLightColor=(R=0.203500,G=0.211373,B=0.275000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=37.156
|
||||
PrecipitationAccumulation=88.073
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[HardRainSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=13.761
|
||||
SunDirectionalLightIntensity=12.587
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=44.037
|
||||
HorizontFalloff=1.835
|
||||
ZenithColor=(R=0.360000,G=0.000000,B=0.025421,A=1.000000)
|
||||
HorizonColor=(R=1.000000,G=0.590000,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=0.555000,G=0.290880,B=0.066600,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=40
|
||||
SkyLightColor=(R=0.255300,G=0.265177,B=0.345000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=84.862
|
||||
PrecipitationAccumulation=100
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[SoftRainSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=13.761
|
||||
SunDirectionalLightIntensity=12.587
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=24.771
|
||||
HorizontFalloff=1.835
|
||||
ZenithColor=(R=1.000000,G=0.627121,B=0.480000,A=1.000000)
|
||||
HorizonColor=(R=0.980000,G=0.807226,B=0.558600,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.561963,B=0.190000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=14.679
|
||||
SkyLightColor=(R=0.255300,G=0.265177,B=0.345000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=30
|
||||
PrecipitationAccumulation=53.211
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
|
|
@ -0,0 +1,418 @@
|
|||
[Default]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=50
|
||||
SunDirectionalLightIntensity=15.092
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=16.296
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.034046,G=0.109247,B=0.295000,A=1.000000)
|
||||
HorizonColor=(R=0.659853,G=0.862215,B=1.000000,A=1.000000)
|
||||
CloudColor=(R=0.855778,G=0.919005,B=1.000000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=5.505
|
||||
SkyLightColor=(R=0.149650,G=0.161819,B=0.205000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[ClearNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=50
|
||||
SunDirectionalLightIntensity=34.286
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=16.296
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.034046,G=0.109247,B=0.295000,A=1.000000)
|
||||
HorizonColor=(R=0.659853,G=0.862215,B=1.000000,A=1.000000)
|
||||
CloudColor=(R=0.855778,G=0.919005,B=1.000000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=10
|
||||
SkyLightColor=(R=0.195000,G=0.193979,B=0.152151,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[CloudyNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.835
|
||||
SunDirectionalLightColor=(R=1.000000,G=0.862295,B=0.475000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.143627,G=0.159235,B=0.190000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=16.514
|
||||
SkyLightColor=(R=0.100887,G=0.106803,B=0.145000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=3.67
|
||||
SunDirectionalLightIntensity=20.184
|
||||
SunDirectionalLightColor=(R=1.000000,G=0.862295,B=0.475000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=17.431
|
||||
HorizontFalloff=5.752
|
||||
ZenithColor=(R=0.000000,G=0.085618,B=0.715000,A=1.000000)
|
||||
HorizonColor=(R=0.532350,G=0.590445,B=0.630000,A=1.000000)
|
||||
CloudColor=(R=0.143627,G=0.159235,B=0.190000,A=1.000000)
|
||||
OverallSkyColor=(R=0.660000,G=0.630413,B=0.518100,A=1.000000)
|
||||
SkyLightIntensity=14.679
|
||||
SkyLightColor=(R=0.135000,G=0.120150,B=0.075600,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=54.128
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetCloudyNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.835
|
||||
SunDirectionalLightColor=(R=1.000000,G=0.862295,B=0.475000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
HorizonColor=(R=0.000000,G=0.000000,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=0.230559,G=0.255614,B=0.305000,A=1.000000)
|
||||
OverallSkyColor=(R=0.660000,G=0.630413,B=0.518100,A=1.000000)
|
||||
SkyLightIntensity=25.688
|
||||
SkyLightColor=(R=0.135000,G=0.120150,B=0.075600,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=47.706
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[MidRainyNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.33
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.370000,G=0.370000,B=0.370000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.042789,G=0.045950,B=0.050000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=21.147
|
||||
SkyLightColor=(R=0.119882,G=0.121557,B=0.170000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=40
|
||||
PrecipitationAccumulation=50
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[HardRainNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.33
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=0.580000,G=0.580000,B=0.580000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.089857,G=0.096495,B=0.105000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=37.66
|
||||
SkyLightColor=(R=0.126934,G=0.128707,B=0.180000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=80
|
||||
PrecipitationAccumulation=87.248
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[SoftRainNoon]
|
||||
SunPolarAngle=44.586
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=1.33
|
||||
SunDirectionalLightColor=(R=255.000000,G=239.000000,B=194.000000,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=18.431
|
||||
HorizontFalloff=3
|
||||
ZenithColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
HorizonColor=(R=0.169000,G=0.187443,B=0.200000,A=1.000000)
|
||||
CloudColor=(R=0.440725,G=0.473285,B=0.515000,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=3
|
||||
SkyLightColor=(R=0.525365,G=0.532706,B=0.745000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=10.55
|
||||
PrecipitationAccumulation=61.927
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[ClearSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=1.835
|
||||
SunDirectionalLightIntensity=50
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347470,B=0.170100,A=1.000000)
|
||||
SunIndirectLightIntensity=73.394
|
||||
CloudOpacity=27.63
|
||||
HorizontFalloff=0.917
|
||||
ZenithColor=(R=0.046375,G=0.044100,B=0.105000,A=1.000000)
|
||||
HorizonColor=(R=0.745000,G=0.219006,B=0.046649,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.561587,B=0.189305,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=14
|
||||
SkyLightColor=(R=0.076220,G=0.074724,B=0.109375,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[CloudySunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=67.89
|
||||
SunDirectionalLightIntensity=6.422
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=28.869
|
||||
HorizontFalloff=1.165
|
||||
ZenithColor=(R=0.046375,G=0.044100,B=0.105000,A=1.000000)
|
||||
HorizonColor=(R=1.000000,G=0.007579,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.518982,B=0.175000,A=1.000000)
|
||||
OverallSkyColor=(R=0.410000,G=0.410000,B=0.410000,A=1.000000)
|
||||
SkyLightIntensity=36.239
|
||||
SkyLightColor=(R=0.193050,G=0.195113,B=0.270000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=0
|
||||
SunDirectionalLightIntensity=25.688
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=17.596
|
||||
HorizontFalloff=1.165
|
||||
ZenithColor=(R=0.046375,G=0.044100,B=0.105000,A=1.000000)
|
||||
HorizonColor=(R=0.695000,G=0.379445,B=0.150922,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.561587,B=0.189305,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=66.972
|
||||
SkyLightColor=(R=0.113887,G=0.110000,B=0.200000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=65.046
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[WetCloudySunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=67.89
|
||||
SunDirectionalLightIntensity=25.688
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=15
|
||||
HorizontFalloff=1.165
|
||||
ZenithColor=(R=0.046375,G=0.044100,B=0.105000,A=1.000000)
|
||||
HorizonColor=(R=0.695000,G=0.379445,B=0.150922,A=1.000000)
|
||||
CloudColor=(R=1.000000,G=0.561587,B=0.189305,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=50
|
||||
SkyLightColor=(R=0.083625,G=0.081983,B=0.120000,A=0.000000)
|
||||
bPrecipitation=False
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=0
|
||||
PrecipitationAccumulation=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[MidRainSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=13.761
|
||||
SunDirectionalLightIntensity=12.587
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=44.037
|
||||
HorizontFalloff=1.835
|
||||
ZenithColor=(R=0.360000,G=0.000000,B=0.025421,A=1.000000)
|
||||
HorizonColor=(R=1.000000,G=0.590000,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=0.555000,G=0.290880,B=0.066600,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=7.339
|
||||
SkyLightColor=(R=0.086250,G=0.159340,B=0.750000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=37.156
|
||||
PrecipitationAccumulation=88.073
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[HardRainSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0.0
|
||||
SunBrightness=13.761
|
||||
SunDirectionalLightIntensity=12.587
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=44.037
|
||||
HorizontFalloff=1.835
|
||||
ZenithColor=(R=0.360000,G=0.000000,B=0.025421,A=1.000000)
|
||||
HorizonColor=(R=1.000000,G=0.590000,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=0.555000,G=0.290880,B=0.066600,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=7.339
|
||||
SkyLightColor=(R=0.086250,G=0.159340,B=0.750000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=84.862
|
||||
PrecipitationAccumulation=100
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
[SoftRainSunset]
|
||||
SunPolarAngle=86
|
||||
SunAzimuthAngle=0
|
||||
SunBrightness=13.761
|
||||
SunDirectionalLightIntensity=12.587
|
||||
SunDirectionalLightColor=(R=0.810000,G=0.347162,B=0.083003,A=1.000000)
|
||||
SunIndirectLightIntensity=6
|
||||
CloudOpacity=34.513
|
||||
HorizontFalloff=1.835
|
||||
ZenithColor=(R=0.360000,G=0.125625,B=0.142175,A=1.000000)
|
||||
HorizonColor=(R=1.000000,G=0.590000,B=0.000000,A=1.000000)
|
||||
CloudColor=(R=0.296875,G=0.169776,B=0.061849,A=1.000000)
|
||||
OverallSkyColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
|
||||
SkyLightIntensity=7.339
|
||||
SkyLightColor=(R=0.458070,G=0.394209,B=0.750000,A=0.000000)
|
||||
bPrecipitation=True
|
||||
PrecipitationType=Rain
|
||||
PrecipitationAmount=8.716
|
||||
PrecipitationAccumulation=53.211
|
||||
bWind=False
|
||||
WindIntensity=20
|
||||
WindAngle=0
|
||||
bOverrideCameraPostProcessParameters=True
|
||||
CameraPostProcessParameters.AutoExposureMethod=Histogram
|
||||
CameraPostProcessParameters.AutoExposureMinBrightness=0.27
|
||||
CameraPostProcessParameters.AutoExposureMaxBrightness=5
|
||||
CameraPostProcessParameters.AutoExposureBias=-3.5
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,73 @@
|
|||
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
||||
TargetedHardwareClass=Desktop
|
||||
AppliedTargetedHardwareClass=Desktop
|
||||
DefaultGraphicsPerformance=Maximum
|
||||
AppliedDefaultGraphicsPerformance=Maximum
|
||||
|
||||
[/Script/EngineSettings.GameMapsSettings]
|
||||
EditorStartupMap=/Game/Maps/Town01.Town01
|
||||
GameDefaultMap=/Game/Maps/Town01.Town01
|
||||
ServerDefaultMap=/Game/Maps/Town01.Town01
|
||||
GlobalDefaultGameMode=/Game/Blueprints/Game/CarlaGameMode.CarlaGameMode_C
|
||||
GameInstanceClass=/Script/Carla.CarlaGameInstance
|
||||
TransitionMap=/Game/Maps/Town01.Town01
|
||||
|
||||
[/Script/Engine.RendererSettings]
|
||||
r.DefaultFeature.MotionBlur=False
|
||||
r.AllowStaticLighting=False
|
||||
r.DiscardUnusedQuality=True
|
||||
r.DefaultFeature.Bloom=False
|
||||
r.DefaultFeature.AmbientOcclusion=False
|
||||
r.DefaultFeature.AmbientOcclusionStaticFraction=False
|
||||
r.DefaultFeature.AutoExposure=False
|
||||
r.CustomDepth=1
|
||||
|
||||
[/Script/AIModule.AISense_Sight]
|
||||
bAutoRegisterAllPawnsAsSources=False
|
||||
bAutoRegisterNewPawnsAsSources=False
|
||||
|
||||
[/Script/Engine.RecastNavMesh]
|
||||
RuntimeGeneration=Static
|
||||
|
||||
[/Script/Engine.PhysicsSettings]
|
||||
DefaultGravityZ=-980.000000
|
||||
DefaultTerminalVelocity=4000.000000
|
||||
DefaultFluidFriction=0.300000
|
||||
SimulateScratchMemorySize=262144
|
||||
RagdollAggregateThreshold=4
|
||||
TriangleMeshTriangleMinAreaThreshold=5.000000
|
||||
bEnableAsyncScene=False
|
||||
bEnableShapeSharing=False
|
||||
bEnablePCM=False
|
||||
bEnableStabilization=False
|
||||
bWarnMissingLocks=True
|
||||
bEnable2DPhysics=False
|
||||
LockedAxis=Invalid
|
||||
DefaultDegreesOfFreedom=Full3D
|
||||
BounceThresholdVelocity=200.000000
|
||||
FrictionCombineMode=Average
|
||||
RestitutionCombineMode=Average
|
||||
MaxAngularVelocity=3600.000000
|
||||
MaxDepenetrationVelocity=0.000000
|
||||
ContactOffsetMultiplier=0.010000
|
||||
MinContactOffset=0.000100
|
||||
MaxContactOffset=1.000000
|
||||
bSimulateSkeletalMeshOnDedicatedServer=True
|
||||
DefaultShapeComplexity=CTF_UseSimpleAndComplex
|
||||
bDefaultHasComplexCollision=True
|
||||
bSuppressFaceRemapTable=False
|
||||
bSupportUVFromHitResults=False
|
||||
bDisableActiveActors=False
|
||||
bDisableCCD=False
|
||||
bEnableEnhancedDeterminism=False
|
||||
MaxPhysicsDeltaTime=0.333330
|
||||
bSubstepping=True
|
||||
bSubsteppingAsync=False
|
||||
MaxSubstepDeltaTime=0.016667
|
||||
MaxSubsteps=6
|
||||
SyncSceneSmoothingFactor=0.000000
|
||||
AsyncSceneSmoothingFactor=0.990000
|
||||
InitialAverageFrameRate=0.016667
|
||||
PhysXTreeRebuildRate=10
|
||||
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
[/Script/EngineSettings.GeneralProjectSettings]
|
||||
ProjectID=675BF8694238308FA9368292CC440350
|
||||
ProjectName=CARLA UE4
|
||||
CompanyName=CVC
|
||||
CopyrightNotice=CARLA, Copyright (C) 2017 Computer Vision Center (CVC)
|
||||
ProjectVersion=0.5.4
|
||||
|
||||
[/Script/UnrealEd.ProjectPackagingSettings]
|
||||
BuildConfiguration=PPBC_Development
|
||||
StagingDirectory=(Path="")
|
||||
FullRebuild=False
|
||||
ForDistribution=False
|
||||
IncludeDebugFiles=False
|
||||
BlueprintNativizationMethod=Disabled
|
||||
bWarnIfPackagedWithoutNativizationFlag=True
|
||||
UsePakFile=True
|
||||
bGenerateChunks=False
|
||||
bChunkHardReferencesOnly=False
|
||||
bBuildHttpChunkInstallData=False
|
||||
HttpChunkInstallDataDirectory=(Path="")
|
||||
HttpChunkInstallDataVersion=
|
||||
IncludePrerequisites=True
|
||||
ApplocalPrerequisitesDirectory=(Path="")
|
||||
IncludeCrashReporter=True
|
||||
InternationalizationPreset=English
|
||||
-CulturesToStage=en
|
||||
+CulturesToStage=en
|
||||
DefaultCulture=en
|
||||
bCookAll=False
|
||||
bCookMapsOnly=False
|
||||
bCompressed=False
|
||||
bEncryptIniFiles=False
|
||||
bSkipEditorContent=False
|
||||
+MapsToCook=(FilePath="/Game/Maps/Town01")
|
||||
+MapsToCook=(FilePath="/Game/Maps/Town02")
|
||||
bNativizeBlueprintAssets=False
|
||||
bNativizeOnlySelectedBlueprints=False
|
||||
|
||||
|
|
@ -0,0 +1,111 @@
|
|||
|
||||
[/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="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="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="MotionController_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Left_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Left_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Left_Grip2Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Right_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Right_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
-AxisConfig=(AxisKeyName="MotionController_Right_Grip2Axis",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="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="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="MotionController_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_Grip2Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Grip2Axis",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))
|
||||
bAltEnterTogglesFullscreen=True
|
||||
bF11TogglesFullscreen=True
|
||||
bUseMouseForTouch=False
|
||||
bEnableMouseSmoothing=True
|
||||
bEnableFOVScaling=True
|
||||
FOVScale=0.011110
|
||||
DoubleClickTime=0.200000
|
||||
bCaptureMouseOnLaunch=True
|
||||
DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown
|
||||
bDefaultViewportMouseLock=False
|
||||
DefaultViewportMouseLockMode=LockOnCapture
|
||||
-ActionMappings=(ActionName="RestartLevel",Key=R,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="Handbrake",Key=SpaceBar,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="ToggleManualMode",Key=M,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="ToggleHUD",Key=G,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="Jump",Key=Enter,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="ToggleReverse",Key=Q,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="UseTheForce",Key=F,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="ToggleCamera",Key=Tab,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="ChangeWeather",Key=C,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-ActionMappings=(ActionName="ToggleAutopilot",Key=None,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="RestartLevel",Key=R,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="Handbrake",Key=SpaceBar,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="ToggleManualMode",Key=M,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="ToggleHUD",Key=G,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="Jump",Key=Enter,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="ToggleReverse",Key=Q,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="UseTheForce",Key=F,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="ToggleCamera",Key=Tab,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="ChangeWeather",Key=C,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
+ActionMappings=(ActionName="ToggleAutopilot",Key=P,bShift=False,bCtrl=False,bAlt=False,bCmd=False)
|
||||
-AxisMappings=(AxisName="CameraZoom",Key=MouseWheelAxis,Scale=-20.000000)
|
||||
-AxisMappings=(AxisName="CameraZoom",Key=PageUp,Scale=-10.000000)
|
||||
-AxisMappings=(AxisName="CameraZoom",Key=PageDown,Scale=10.000000)
|
||||
-AxisMappings=(AxisName="CameraUp",Key=Up,Scale=1.000000)
|
||||
-AxisMappings=(AxisName="CameraUp",Key=Down,Scale=-1.000000)
|
||||
-AxisMappings=(AxisName="CameraRight",Key=Right,Scale=1.000000)
|
||||
-AxisMappings=(AxisName="CameraRight",Key=Left,Scale=-1.000000)
|
||||
-AxisMappings=(AxisName="MoveForward",Key=W,Scale=1.000000)
|
||||
-AxisMappings=(AxisName="MoveRight",Key=D,Scale=1.000000)
|
||||
-AxisMappings=(AxisName="MoveRight",Key=A,Scale=-1.000000)
|
||||
-AxisMappings=(AxisName="Brake",Key=S,Scale=1.000000)
|
||||
+AxisMappings=(AxisName="CameraZoom",Key=MouseWheelAxis,Scale=-20.000000)
|
||||
+AxisMappings=(AxisName="CameraZoom",Key=PageUp,Scale=-10.000000)
|
||||
+AxisMappings=(AxisName="CameraZoom",Key=PageDown,Scale=10.000000)
|
||||
+AxisMappings=(AxisName="CameraUp",Key=Up,Scale=1.000000)
|
||||
+AxisMappings=(AxisName="CameraUp",Key=Down,Scale=-1.000000)
|
||||
+AxisMappings=(AxisName="CameraRight",Key=Right,Scale=1.000000)
|
||||
+AxisMappings=(AxisName="CameraRight",Key=Left,Scale=-1.000000)
|
||||
+AxisMappings=(AxisName="MoveForward",Key=W,Scale=1.000000)
|
||||
+AxisMappings=(AxisName="MoveRight",Key=D,Scale=1.000000)
|
||||
+AxisMappings=(AxisName="MoveRight",Key=A,Scale=-1.000000)
|
||||
+AxisMappings=(AxisName="Brake",Key=S,Scale=1.000000)
|
||||
bAlwaysShowTouchInterface=False
|
||||
bShowConsoleOnFourFingerTap=True
|
||||
DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks
|
||||
ConsoleKey=None
|
||||
-ConsoleKeys=Tilde
|
||||
+ConsoleKeys=Tilde
|
||||
|
||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue