Update uproject, update project version (#7891)

* Update uproject, update project version

* Re enable performance monitor
This commit is contained in:
Blyron 2024-07-01 15:07:23 +02:00 committed by GitHub
parent 2c657527ae
commit e9fdf846d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 103 deletions

View File

@ -23,8 +23,8 @@ if (${CMAKE_MINOR_VERSION} GREATER_EQUAL 24)
endif ()
set (CARLA_VERSION_MAJOR 0)
set (CARLA_VERSION_MINOR 9)
set (CARLA_VERSION_PATCH 15)
set (CARLA_VERSION_MINOR 10)
set (CARLA_VERSION_PATCH 0)
set (
CARLA_VERSION

View File

@ -20,81 +20,6 @@
"Name": "Carla",
"Enabled": true
},
{
"Name": "OnlineSubsystemGooglePlay",
"Enabled": false,
"SupportedTargetPlatforms": [
"Android"
]
},
{
"Name": "AndroidPermission",
"Enabled": false
},
{
"Name": "AppleARKit",
"Enabled": false
},
{
"Name": "LocationServicesBPLibrary",
"Enabled": false
},
{
"Name": "AndroidDeviceProfileSelector",
"Enabled": false
},
{
"Name": "ExampleDeviceProfileSelector",
"Enabled": false
},
{
"Name": "IOSDeviceProfileSelector",
"Enabled": false
},
{
"Name": "UObjectPlugin",
"Enabled": false
},
{
"Name": "AndroidMedia",
"Enabled": false
},
{
"Name": "HTML5Networking",
"Enabled": false
},
{
"Name": "MobileLauncherProfileWizard",
"Enabled": false
},
{
"Name": "MobilePatchingUtils",
"Enabled": false
},
{
"Name": "AndroidMoviePlayer",
"Enabled": false
},
{
"Name": "AppleMoviePlayer",
"Enabled": false
},
{
"Name": "GoogleCloudMessaging",
"Enabled": false
},
{
"Name": "PerformanceMonitor",
"Enabled": true
},
{
"Name": "OculusVR",
"Enabled": false
},
{
"Name": "SteamVR",
"Enabled": false
},
{
"Name": "RenderDocPlugin",
"Enabled": true
@ -143,38 +68,18 @@
"Name": "RigLogic",
"Enabled": true
},
{
"Name": "LiveLink",
"Enabled": true
},
{
"Name": "LiveLinkControlRig",
"Enabled": true
},
{
"Name": "AppleARKitFaceSupport",
"Enabled": true,
"SupportedTargetPlatforms": [
"IOS",
"Win64",
"Mac",
"Linux",
"Android"
]
},
{
"Name": "MovieRenderPipeline",
"Enabled": true
},
{
"Name": "Volumetrics",
"Enabled": true
},
{
"Name": "PerformanceMonitor",
"Enabled": true
}
],
"TargetPlatforms": [
"Linux",
"LinuxArm64",
"Mac",
"Windows"
]
}

View File

@ -3,7 +3,7 @@ ProjectID=675BF8694238308FA9368292CC440350
ProjectName=CarlaUnreal
CompanyName=CVC
CopyrightNotice="Copyright (c) 2024 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB). This work is licensed under the terms of the MIT license. For a copy, see <https://opensource.org/licenses/MIT>."
ProjectVersion=0.9.15
ProjectVersion=0.10.0
[/Script/Carla.CarlaSettings]
+LowRoadMaterials=(MaterialInterface=MaterialInstanceConstant'"/Game/Carla/Static/GenericMaterials/Ground/SimpleRoad/CheapRoad.CheapRoad"',MaterialSlotName="Tileroad_Road",ImportedMaterialSlotName="",UVChannelData=(bInitialized=False,bOverrideDensities=False,LocalUVDensities[0]=0.000000,LocalUVDensities[1]=0.000000,LocalUVDensities[2]=0.000000,LocalUVDensities[3]=0.000000))

View File

@ -76,7 +76,7 @@ void ACarlaWheeledVehicle::BeginPlay()
GetDefaultSubobjectByName(ConstraintComponent->ComponentName1.ComponentName));
if(DoorComponent)
{
UE_LOG(LogCarla, Warning, TEXT("Door name: %s"), *(DoorComponent->GetName()));
UE_LOG(LogCarla, Log, TEXT("Door name: %s"), *(DoorComponent->GetName()));
FTransform ComponentWorldTransform = DoorComponent->GetComponentTransform();
FTransform RelativeTransform = ComponentWorldTransform * ActorInverseTransform;
DoorComponentsTransform.Add(DoorComponent, RelativeTransform);