File size: 3,077 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreTypes.h"
#include "Engine/DeveloperSettingsBackedByCVars.h"
#include "LyraReplicationGraphTypes.h"
#include "LyraReplicationGraphSettings.generated.h"
/**
* Default settings for the Lyra replication graph
*/
UCLASS(config=Game, MinimalAPI)
class ULyraReplicationGraphSettings : public UDeveloperSettingsBackedByCVars
{
GENERATED_BODY()
public:
ULyraReplicationGraphSettings();
public:
UPROPERTY(config, EditAnywhere, Category = ReplicationGraph)
bool bDisableReplicationGraph = true;
UPROPERTY(config, EditAnywhere, Category = ReplicationGraph, meta = (MetaClass = "/Script/LyraGame.LyraReplicationGraph"))
FSoftClassPath DefaultReplicationGraphClass;
UPROPERTY(EditAnywhere, Category = FastSharedPath, meta = (ConsoleVariable = "Lyra.RepGraph.EnableFastSharedPath"))
bool bEnableFastSharedPath = true;
// How much bandwidth to use for FastShared movement updates. This is counted independently of the NetDriver's target bandwidth.
UPROPERTY(EditAnywhere, Category = FastSharedPath, meta = (ForceUnits=Kilobytes, ConsoleVariable = "Lyra.RepGraph.TargetKBytesSecFastSharedPath"))
int32 TargetKBytesSecFastSharedPath = 10;
UPROPERTY(EditAnywhere, Category = FastSharedPath, meta = (ConsoleVariable = "Lyra.RepGraph.FastSharedPathCullDistPct"))
float FastSharedPathCullDistPct = 0.80f;
UPROPERTY(EditAnywhere, Category = DestructionInfo, meta = (ForceUnits = cm, ConsoleVariable = "Lyra.RepGraph.DestructInfo.MaxDist"))
float DestructionInfoMaxDist = 30000.f;
UPROPERTY(EditAnywhere, Category=SpatialGrid, meta=(ForceUnits=cm, ConsoleVariable = "Lyra.RepGraph.CellSize"))
float SpatialGridCellSize = 10000.0f;
// Essentially "Min X" for replication. This is just an initial value. The system will reset itself if actors appears outside of this.
UPROPERTY(EditAnywhere, Category=SpatialGrid, meta=(ForceUnits=cm, ConsoleVariable = "Lyra.RepGraph.SpatialBiasX"))
float SpatialBiasX = -200000.0f;
// Essentially "Min Y" for replication. This is just an initial value. The system will reset itself if actors appears outside of this.
UPROPERTY(EditAnywhere, Category=SpatialGrid, meta=(ForceUnits=cm, ConsoleVariable = "Lyra.RepGraph.SpatialBiasY"))
float SpatialBiasY = -200000.0f;
UPROPERTY(EditAnywhere, Category=SpatialGrid, meta = (ConsoleVariable = "Lyra.RepGraph.DisableSpatialRebuilds"))
bool bDisableSpatialRebuilds = true;
// How many buckets to spread dynamic, spatialized actors across.
// High number = more buckets = smaller effective replication frequency.
// This happens before individual actors do their own NetUpdateFrequency check.
UPROPERTY(EditAnywhere, Category = DynamicSpatialFrequency, meta = (ConsoleVariable = "Lyra.RepGraph.DynamicActorFrequencyBuckets"))
int32 DynamicActorFrequencyBuckets = 3;
// Array of Custom Settings for Specific Classes
UPROPERTY(config, EditAnywhere, Category = ReplicationGraph)
TArray<FRepGraphActorClassSettings> ClassSettings;
};
|