Compare commits
4 Commits
b7f7c52e58
...
63b3ec0819
Author | SHA1 | Date | |
---|---|---|---|
63b3ec0819 | |||
f66dd3784c | |||
5cc1709c5a | |||
0b2bf7220d |
@ -87,7 +87,7 @@ r.RayTracing.UseTextureLod=False
|
|||||||
r.PathTracing=True
|
r.PathTracing=True
|
||||||
r.GenerateMeshDistanceFields=True
|
r.GenerateMeshDistanceFields=True
|
||||||
r.DistanceFields.DefaultVoxelDensity=0.200000
|
r.DistanceFields.DefaultVoxelDensity=0.200000
|
||||||
r.Nanite.ProjectEnabled=False
|
r.Nanite.ProjectEnabled=true
|
||||||
r.AllowStaticLighting=True
|
r.AllowStaticLighting=True
|
||||||
r.NormalMapsForStaticLighting=True
|
r.NormalMapsForStaticLighting=True
|
||||||
r.ForwardShading=False
|
r.ForwardShading=False
|
||||||
@ -180,7 +180,9 @@ bStreamSkeletalMeshLODs=(Default=False,PerPlatform=())
|
|||||||
bDiscardSkeletalMeshOptionalLODs=(Default=False,PerPlatform=())
|
bDiscardSkeletalMeshOptionalLODs=(Default=False,PerPlatform=())
|
||||||
VisualizeCalibrationColorMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor
|
VisualizeCalibrationColorMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor
|
||||||
VisualizeCalibrationCustomMaterialPath=None
|
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]
|
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
|
||||||
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
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.
BIN
Content/Assets/Base_Materials/Chipboard/M_Chipboard.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Base_Materials/Chipboard/M_Chipboard.uasset
(Stored with Git LFS)
Normal file
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.
BIN
Content/Assets/StorageRack/DestructableBox.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/StorageRack/DestructableBox.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/StorageRack/SM_StorageCube.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/StorageRack/SM_StorageCube.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -35,7 +35,10 @@ void ALevelEndTriggerVolume::OnOverlapBegin(UPrimitiveComponent* OverlappedCompo
|
|||||||
{
|
{
|
||||||
GetCollisionComponent()->OnComponentBeginOverlap.Clear();
|
GetCollisionComponent()->OnComponentBeginOverlap.Clear();
|
||||||
|
|
||||||
gameInstance->GetCurrentLevelManager()->LoadNextLevel(NextLevel);
|
if (!NextLevel.IsNull())
|
||||||
|
{
|
||||||
|
UGameplayStatics::OpenLevelBySoftObjectPtr(GetWorld(), NextLevel);
|
||||||
|
}
|
||||||
|
|
||||||
this->Destroy();
|
this->Destroy();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user