├── .gitignore ├── Config ├── DefaultEditor.ini ├── DefaultEngine.ini └── DefaultGame.ini ├── LICENSE ├── README.md ├── RepGraph.png ├── RepGraph.uproject └── Source ├── RepGraph.Target.cs ├── RepGraph ├── Classes │ ├── RTSReplicationGraph.h │ ├── RTSReplicationGraphNode_Vision.h │ ├── RTSVisibleComponent.h │ └── RTSVisionState.h ├── Private │ ├── RTSReplicationGraph.cpp │ ├── RTSReplicationGraphNode_Vision.cpp │ └── RTSVisibleComponent.cpp ├── RepGraph.Build.cs ├── RepGraph.cpp └── RepGraph.h └── RepGraphEditor.Target.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/README.md -------------------------------------------------------------------------------- /RepGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/RepGraph.png -------------------------------------------------------------------------------- /RepGraph.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/RepGraph.uproject -------------------------------------------------------------------------------- /Source/RepGraph.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph.Target.cs -------------------------------------------------------------------------------- /Source/RepGraph/Classes/RTSReplicationGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/Classes/RTSReplicationGraph.h -------------------------------------------------------------------------------- /Source/RepGraph/Classes/RTSReplicationGraphNode_Vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/Classes/RTSReplicationGraphNode_Vision.h -------------------------------------------------------------------------------- /Source/RepGraph/Classes/RTSVisibleComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/Classes/RTSVisibleComponent.h -------------------------------------------------------------------------------- /Source/RepGraph/Classes/RTSVisionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/Classes/RTSVisionState.h -------------------------------------------------------------------------------- /Source/RepGraph/Private/RTSReplicationGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/Private/RTSReplicationGraph.cpp -------------------------------------------------------------------------------- /Source/RepGraph/Private/RTSReplicationGraphNode_Vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/Private/RTSReplicationGraphNode_Vision.cpp -------------------------------------------------------------------------------- /Source/RepGraph/Private/RTSVisibleComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/Private/RTSVisibleComponent.cpp -------------------------------------------------------------------------------- /Source/RepGraph/RepGraph.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/RepGraph.Build.cs -------------------------------------------------------------------------------- /Source/RepGraph/RepGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraph/RepGraph.cpp -------------------------------------------------------------------------------- /Source/RepGraph/RepGraph.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "CoreMinimal.h" 4 | 5 | DECLARE_LOG_CATEGORY_EXTERN(LogRTS, Log, All); 6 | -------------------------------------------------------------------------------- /Source/RepGraphEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-replication-graph/HEAD/Source/RepGraphEditor.Target.cs --------------------------------------------------------------------------------