Compare commits
4 Commits
b7f7c52e58
...
63b3ec0819
Author | SHA1 | Date |
---|---|---|
baz | 63b3ec0819 | |
baz | f66dd3784c | |
baz | 5cc1709c5a | |
baz | 0b2bf7220d |
|
@ -87,7 +87,7 @@ r.RayTracing.UseTextureLod=False
|
|||
r.PathTracing=True
|
||||
r.GenerateMeshDistanceFields=True
|
||||
r.DistanceFields.DefaultVoxelDensity=0.200000
|
||||
r.Nanite.ProjectEnabled=False
|
||||
r.Nanite.ProjectEnabled=true
|
||||
r.AllowStaticLighting=True
|
||||
r.NormalMapsForStaticLighting=True
|
||||
r.ForwardShading=False
|
||||
|
@ -180,7 +180,9 @@ bStreamSkeletalMeshLODs=(Default=False,PerPlatform=())
|
|||
bDiscardSkeletalMeshOptionalLODs=(Default=False,PerPlatform=())
|
||||
VisualizeCalibrationColorMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor
|
||||
VisualizeCalibrationCustomMaterialPath=None
|
||||
VisualizeCalibrationGrayscaleMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale
|
||||
VisualizeCalibrationGrayscaleMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscaler
|
||||
r.Nanite.AllowTessellation=1
|
||||
r.Nanite.Tessellation=1
|
||||
|
||||
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
|
||||
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
||||
|
|
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_Color.uasset (Stored with Git LFS)
Normal file
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_Color.uasset (Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_Displacement.uasset (Stored with Git LFS)
Normal file
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_Displacement.uasset (Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_NormalDX.uasset (Stored with Git LFS)
Normal file
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_NormalDX.uasset (Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_Roughness.uasset (Stored with Git LFS)
Normal file
BIN
Content/Assets/Base_Materials/Chipboard/Chipboard004_1K-JPG_Roughness.uasset (Stored with Git LFS)
Normal file
Binary file not shown.
Binary file not shown.
BIN
Content/Assets/StorageRack/BP_StorageRack.uasset (Stored with Git LFS)
BIN
Content/Assets/StorageRack/BP_StorageRack.uasset (Stored with Git LFS)
Binary file not shown.
BIN
Content/Assets/StorageRack/BP_StorageRack2.uasset (Stored with Git LFS)
BIN
Content/Assets/StorageRack/BP_StorageRack2.uasset (Stored with Git LFS)
Binary file not shown.
BIN
Content/Assets/StorageRack/BP_StorageRackBig.uasset (Stored with Git LFS)
BIN
Content/Assets/StorageRack/BP_StorageRackBig.uasset (Stored with Git LFS)
Binary file not shown.
BIN
Content/Assets/StorageRack/BP_StorageRackEnd.uasset (Stored with Git LFS)
BIN
Content/Assets/StorageRack/BP_StorageRackEnd.uasset (Stored with Git LFS)
Binary file not shown.
BIN
Content/Assets/StorageRack/BP_StorageRackSingular.uasset (Stored with Git LFS)
BIN
Content/Assets/StorageRack/BP_StorageRackSingular.uasset (Stored with Git LFS)
Binary file not shown.
BIN
Content/Assets/StorageRack/BP_StorageRackSquare.uasset (Stored with Git LFS)
BIN
Content/Assets/StorageRack/BP_StorageRackSquare.uasset (Stored with Git LFS)
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -35,7 +35,10 @@ void ALevelEndTriggerVolume::OnOverlapBegin(UPrimitiveComponent* OverlappedCompo
|
|||
{
|
||||
GetCollisionComponent()->OnComponentBeginOverlap.Clear();
|
||||
|
||||
gameInstance->GetCurrentLevelManager()->LoadNextLevel(NextLevel);
|
||||
if (!NextLevel.IsNull())
|
||||
{
|
||||
UGameplayStatics::OpenLevelBySoftObjectPtr(GetWorld(), NextLevel);
|
||||
}
|
||||
|
||||
this->Destroy();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue