├── .gitignore ├── Config ├── DefaultEditor.ini ├── DefaultEngine.ini └── DefaultGame.ini ├── Content ├── ProceduralOutofEmpty │ ├── BP_LansdcapeTest.uasset │ ├── BP_PIE_ProcLandTest.uasset │ ├── GreenGrass.uasset │ ├── Material │ │ ├── MI_AutoMat_2.uasset │ │ ├── M_AutoMaterial_2.uasset │ │ ├── M_AutoMaterial_2_Inst.uasset │ │ ├── M_FieldGrass_01.uasset │ │ ├── M_FieldGrass_01_Inst.uasset │ │ ├── M_FieldGrass_01_Inst1.uasset │ │ ├── StarterContent │ │ │ └── Textures │ │ │ │ └── T_Water_N.uasset │ │ ├── T_FieldGrass_01_D.uasset │ │ └── T_FieldGrass_02_M.uasset │ ├── RT_2048.uasset │ ├── SM_FieldGrass_01.uasset │ ├── SM_FieldGrass_03.uasset │ ├── SnowGrass.uasset │ └── level_GoProcedural.umap ├── TerrainEditor │ ├── BP_LansdcapeTest.uasset │ ├── Materials │ │ ├── MI_AutoMat.uasset │ │ ├── MI_TerrainConstructor.uasset │ │ ├── M_AutoMaterial.uasset │ │ └── M_TerrainConstructor.uasset │ ├── Textures │ │ ├── RT.uasset │ │ └── T_Fog.uasset │ └── level_original.umap ├── Test │ ├── AGrassBuilder.uasset │ ├── NewFoliageType_InstancedStaticMesh.uasset │ ├── ProceduralFoliageSpawner.uasset │ └── TaskGrassBuildMTest.umap └── empty.umap ├── README.md ├── Shaders └── Private │ ├── LandscapeGrassWeight.usf │ ├── LandscapeProceduralPS.usf │ ├── LandscapeProceduralVS.usf │ └── LandscapeVertexFactory.ush ├── Source ├── CyLand │ ├── Classes │ │ ├── CyControlPointMeshComponent.h │ │ ├── CyLand.h │ │ ├── CyLandBPCustomBrush.h │ │ ├── CyLandComponent.h │ │ ├── CyLandGizmoActiveActor.h │ │ ├── CyLandGizmoActor.h │ │ ├── CyLandGizmoRenderComponent.h │ │ ├── CyLandHeightfieldCollisionComponent.h │ │ ├── CyLandInfo.h │ │ ├── CyLandInfoMap.h │ │ ├── CyLandLayerInfoObject.h │ │ ├── CyLandMaterialInstanceConstant.h │ │ ├── CyLandMeshCollisionComponent.h │ │ ├── CyLandMeshProxyActor.h │ │ ├── CyLandMeshProxyComponent.h │ │ ├── CyLandProxy.h │ │ ├── CyLandSplineControlPoint.h │ │ ├── CyLandSplineSegment.h │ │ ├── CyLandSplinesComponent.h │ │ └── CyLandStreamingProxy.h │ ├── CyLand.Build.cs │ ├── Private │ │ ├── CyLand.cpp │ │ ├── CyLandBPCustomBrush.cpp │ │ ├── CyLandBlueprintSupport.cpp │ │ ├── CyLandCollision.cpp │ │ ├── CyLandComponent.cpp │ │ ├── CyLandDataAccess.cpp │ │ ├── CyLandEdit.cpp │ │ ├── CyLandEditInterface.cpp │ │ ├── CyLandEditProcedural.cpp │ │ ├── CyLandGizmoActor.cpp │ │ ├── CyLandGrass.cpp │ │ ├── CyLandInfo.cpp │ │ ├── CyLandInfoMap.cpp │ │ ├── CyLandLight.cpp │ │ ├── CyLandModule.cpp │ │ ├── CyLandPrivate.h │ │ ├── CyLandProc.cpp │ │ ├── CyLandProxy.cpp │ │ ├── CyLandRender.cpp │ │ ├── CyLandRenderMobile.cpp │ │ ├── CyLandSplineProxies.cpp │ │ ├── CyLandSplineRaster.cpp │ │ ├── CyLandSplineRaster.h │ │ ├── CyLandSplines.cpp │ │ └── CyLandVersion.h │ └── Public │ │ ├── CyLandDataAccess.h │ │ ├── CyLandEdit.h │ │ ├── CyLandLight.h │ │ ├── CyLandModule.h │ │ ├── CyLandProc.h │ │ ├── CyLandRender.h │ │ ├── CyLandRenderMobile.h │ │ ├── CyLandSplineProxies.h │ │ ├── MUtils.cpp │ │ └── MUtils.h ├── CylandEditor │ ├── CyLandEditor.Build.cs │ ├── Private │ │ ├── ActorFactoryCyLand.cpp │ │ ├── Classes │ │ │ ├── ActorFactoryCyLand.h │ │ │ └── CyLandPlaceholder.h │ │ ├── CyLandEdMode.cpp │ │ ├── CyLandEdMode.h │ │ ├── CyLandEdModeBPCustomTools.cpp │ │ ├── CyLandEdModeBrushes.cpp │ │ ├── CyLandEdModeComponentTools.cpp │ │ ├── CyLandEdModeErosionTools.cpp │ │ ├── CyLandEdModeMirrorTool.cpp │ │ ├── CyLandEdModePaintTools.cpp │ │ ├── CyLandEdModeRampTool.cpp │ │ ├── CyLandEdModeSplineTools.cpp │ │ ├── CyLandEdModeTools.h │ │ ├── CyLandEdModeXYOffset.cpp │ │ ├── CyLandEditorCommands.cpp │ │ ├── CyLandEditorCommands.h │ │ ├── CyLandEditorDetailCustomization_AlphaBrush.cpp │ │ ├── CyLandEditorDetailCustomization_AlphaBrush.h │ │ ├── CyLandEditorDetailCustomization_Base.cpp │ │ ├── CyLandEditorDetailCustomization_Base.h │ │ ├── CyLandEditorDetailCustomization_CopyPaste.cpp │ │ ├── CyLandEditorDetailCustomization_CopyPaste.h │ │ ├── CyLandEditorDetailCustomization_MiscTools.cpp │ │ ├── CyLandEditorDetailCustomization_MiscTools.h │ │ ├── CyLandEditorDetailCustomization_NewCyLand.cpp │ │ ├── CyLandEditorDetailCustomization_NewCyLand.h │ │ ├── CyLandEditorDetailCustomization_ProceduralBrushStack.cpp │ │ ├── CyLandEditorDetailCustomization_ProceduralBrushStack.h │ │ ├── CyLandEditorDetailCustomization_ProceduralLayers.cpp │ │ ├── CyLandEditorDetailCustomization_ProceduralLayers.h │ │ ├── CyLandEditorDetailCustomization_ResizeCyLand.cpp │ │ ├── CyLandEditorDetailCustomization_ResizeCyLand.h │ │ ├── CyLandEditorDetailCustomization_TargetLayers.cpp │ │ ├── CyLandEditorDetailCustomization_TargetLayers.h │ │ ├── CyLandEditorDetailCustomizations.h │ │ ├── CyLandEditorDetailWidgets.cpp │ │ ├── CyLandEditorDetailWidgets.h │ │ ├── CyLandEditorDetails.cpp │ │ ├── CyLandEditorDetails.h │ │ ├── CyLandEditorModule.cpp │ │ ├── CyLandEditorObject.cpp │ │ ├── CyLandFileFormatPng.cpp │ │ ├── CyLandFileFormatPng.h │ │ ├── CyLandFileFormatRaw.cpp │ │ ├── CyLandFileFormatRaw.h │ │ ├── CyLandSplineDetails.cpp │ │ ├── CyLandSplineDetails.h │ │ ├── CyLandSplineImportExport.cpp │ │ ├── CyLandSplineImportExport.h │ │ ├── NewCyLandUtils.cpp │ │ ├── SCyLandEditor.cpp │ │ ├── SCyLandEditor.h │ │ ├── SFlattenHeightEyeDropperButton.cpp │ │ ├── SFlattenHeightEyeDropperButton.h │ │ └── Tests │ │ │ └── CyLandAutomationTests.cpp │ └── Public │ │ ├── CyLandEditorModule.h │ │ ├── CyLandEditorObject.h │ │ ├── CyLandEditorUtils.h │ │ ├── CyLandFileFormatInterface.h │ │ ├── CyLandToolInterface.h │ │ └── NewCyLandUtils.h ├── worldengine2.Target.cs ├── worldengine2 │ ├── Ghrbuildertest.cpp │ ├── Ghrbuildertest.h │ ├── worldengine2.Build.cs │ ├── worldengine2.cpp │ ├── worldengine2.h │ ├── worldengine2GameModeBase.cpp │ └── worldengine2GameModeBase.h └── worldengine2Editor.Target.cs └── worldengine2.uproject /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/BP_LansdcapeTest.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/BP_LansdcapeTest.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/BP_PIE_ProcLandTest.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/BP_PIE_ProcLandTest.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/GreenGrass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/GreenGrass.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/MI_AutoMat_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/MI_AutoMat_2.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/M_AutoMaterial_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/M_AutoMaterial_2.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/M_AutoMaterial_2_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/M_AutoMaterial_2_Inst.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/M_FieldGrass_01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/M_FieldGrass_01.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/M_FieldGrass_01_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/M_FieldGrass_01_Inst.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/M_FieldGrass_01_Inst1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/M_FieldGrass_01_Inst1.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/StarterContent/Textures/T_Water_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/StarterContent/Textures/T_Water_N.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/T_FieldGrass_01_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/T_FieldGrass_01_D.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/Material/T_FieldGrass_02_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/Material/T_FieldGrass_02_M.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/RT_2048.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/RT_2048.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/SM_FieldGrass_01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/SM_FieldGrass_01.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/SM_FieldGrass_03.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/SM_FieldGrass_03.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/SnowGrass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/SnowGrass.uasset -------------------------------------------------------------------------------- /Content/ProceduralOutofEmpty/level_GoProcedural.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/ProceduralOutofEmpty/level_GoProcedural.umap -------------------------------------------------------------------------------- /Content/TerrainEditor/BP_LansdcapeTest.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/BP_LansdcapeTest.uasset -------------------------------------------------------------------------------- /Content/TerrainEditor/Materials/MI_AutoMat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/Materials/MI_AutoMat.uasset -------------------------------------------------------------------------------- /Content/TerrainEditor/Materials/MI_TerrainConstructor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/Materials/MI_TerrainConstructor.uasset -------------------------------------------------------------------------------- /Content/TerrainEditor/Materials/M_AutoMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/Materials/M_AutoMaterial.uasset -------------------------------------------------------------------------------- /Content/TerrainEditor/Materials/M_TerrainConstructor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/Materials/M_TerrainConstructor.uasset -------------------------------------------------------------------------------- /Content/TerrainEditor/Textures/RT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/Textures/RT.uasset -------------------------------------------------------------------------------- /Content/TerrainEditor/Textures/T_Fog.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/Textures/T_Fog.uasset -------------------------------------------------------------------------------- /Content/TerrainEditor/level_original.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/TerrainEditor/level_original.umap -------------------------------------------------------------------------------- /Content/Test/AGrassBuilder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/Test/AGrassBuilder.uasset -------------------------------------------------------------------------------- /Content/Test/NewFoliageType_InstancedStaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/Test/NewFoliageType_InstancedStaticMesh.uasset -------------------------------------------------------------------------------- /Content/Test/ProceduralFoliageSpawner.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/Test/ProceduralFoliageSpawner.uasset -------------------------------------------------------------------------------- /Content/Test/TaskGrassBuildMTest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/Test/TaskGrassBuildMTest.umap -------------------------------------------------------------------------------- /Content/empty.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Content/empty.umap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/README.md -------------------------------------------------------------------------------- /Shaders/Private/LandscapeGrassWeight.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Shaders/Private/LandscapeGrassWeight.usf -------------------------------------------------------------------------------- /Shaders/Private/LandscapeProceduralPS.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Shaders/Private/LandscapeProceduralPS.usf -------------------------------------------------------------------------------- /Shaders/Private/LandscapeProceduralVS.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Shaders/Private/LandscapeProceduralVS.usf -------------------------------------------------------------------------------- /Shaders/Private/LandscapeVertexFactory.ush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Shaders/Private/LandscapeVertexFactory.ush -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyControlPointMeshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyControlPointMeshComponent.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLand.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandBPCustomBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandBPCustomBrush.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandComponent.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandGizmoActiveActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandGizmoActiveActor.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandGizmoActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandGizmoActor.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandGizmoRenderComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandGizmoRenderComponent.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandHeightfieldCollisionComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandHeightfieldCollisionComponent.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandInfo.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandInfoMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandInfoMap.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandLayerInfoObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandLayerInfoObject.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandMaterialInstanceConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandMaterialInstanceConstant.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandMeshCollisionComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandMeshCollisionComponent.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandMeshProxyActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandMeshProxyActor.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandMeshProxyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandMeshProxyComponent.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandProxy.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandSplineControlPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandSplineControlPoint.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandSplineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandSplineSegment.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandSplinesComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandSplinesComponent.h -------------------------------------------------------------------------------- /Source/CyLand/Classes/CyLandStreamingProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Classes/CyLandStreamingProxy.h -------------------------------------------------------------------------------- /Source/CyLand/CyLand.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/CyLand.Build.cs -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLand.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandBPCustomBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandBPCustomBrush.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandBlueprintSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandBlueprintSupport.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandCollision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandCollision.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandComponent.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandDataAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandDataAccess.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandEdit.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandEditInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandEditInterface.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandEditProcedural.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandEditProcedural.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandGizmoActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandGizmoActor.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandGrass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandGrass.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandInfo.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandInfoMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandInfoMap.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandLight.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandModule.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandPrivate.h -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandProc.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandProxy.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandRender.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandRenderMobile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandRenderMobile.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandSplineProxies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandSplineProxies.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandSplineRaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandSplineRaster.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandSplineRaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandSplineRaster.h -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandSplines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandSplines.cpp -------------------------------------------------------------------------------- /Source/CyLand/Private/CyLandVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Private/CyLandVersion.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandDataAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandDataAccess.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandEdit.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandLight.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandModule.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandProc.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandRender.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandRenderMobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandRenderMobile.h -------------------------------------------------------------------------------- /Source/CyLand/Public/CyLandSplineProxies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/CyLandSplineProxies.h -------------------------------------------------------------------------------- /Source/CyLand/Public/MUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/MUtils.cpp -------------------------------------------------------------------------------- /Source/CyLand/Public/MUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CyLand/Public/MUtils.h -------------------------------------------------------------------------------- /Source/CylandEditor/CyLandEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/CyLandEditor.Build.cs -------------------------------------------------------------------------------- /Source/CylandEditor/Private/ActorFactoryCyLand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/ActorFactoryCyLand.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/Classes/ActorFactoryCyLand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/Classes/ActorFactoryCyLand.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/Classes/CyLandPlaceholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/Classes/CyLandPlaceholder.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdMode.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdMode.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeBPCustomTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeBPCustomTools.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeBrushes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeBrushes.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeComponentTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeComponentTools.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeErosionTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeErosionTools.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeMirrorTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeMirrorTool.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModePaintTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModePaintTools.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeRampTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeRampTool.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeSplineTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeSplineTools.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeTools.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEdModeXYOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEdModeXYOffset.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorCommands.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorCommands.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_AlphaBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_AlphaBrush.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_AlphaBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_AlphaBrush.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_Base.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_Base.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_CopyPaste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_CopyPaste.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_CopyPaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_CopyPaste.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_MiscTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_MiscTools.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_MiscTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_MiscTools.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_NewCyLand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_NewCyLand.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_NewCyLand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_NewCyLand.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralBrushStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralBrushStack.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralBrushStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralBrushStack.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralLayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralLayers.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_ProceduralLayers.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_ResizeCyLand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_ResizeCyLand.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_ResizeCyLand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_ResizeCyLand.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_TargetLayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_TargetLayers.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomization_TargetLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomization_TargetLayers.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailCustomizations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailCustomizations.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailWidgets.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetailWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetailWidgets.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetails.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorDetails.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorModule.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandEditorObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandEditorObject.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandFileFormatPng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandFileFormatPng.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandFileFormatPng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandFileFormatPng.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandFileFormatRaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandFileFormatRaw.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandFileFormatRaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandFileFormatRaw.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandSplineDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandSplineDetails.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandSplineDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandSplineDetails.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandSplineImportExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandSplineImportExport.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/CyLandSplineImportExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/CyLandSplineImportExport.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/NewCyLandUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/NewCyLandUtils.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/SCyLandEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/SCyLandEditor.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/SCyLandEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/SCyLandEditor.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/SFlattenHeightEyeDropperButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/SFlattenHeightEyeDropperButton.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Private/SFlattenHeightEyeDropperButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/SFlattenHeightEyeDropperButton.h -------------------------------------------------------------------------------- /Source/CylandEditor/Private/Tests/CyLandAutomationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Private/Tests/CyLandAutomationTests.cpp -------------------------------------------------------------------------------- /Source/CylandEditor/Public/CyLandEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Public/CyLandEditorModule.h -------------------------------------------------------------------------------- /Source/CylandEditor/Public/CyLandEditorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Public/CyLandEditorObject.h -------------------------------------------------------------------------------- /Source/CylandEditor/Public/CyLandEditorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Public/CyLandEditorUtils.h -------------------------------------------------------------------------------- /Source/CylandEditor/Public/CyLandFileFormatInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Public/CyLandFileFormatInterface.h -------------------------------------------------------------------------------- /Source/CylandEditor/Public/CyLandToolInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Public/CyLandToolInterface.h -------------------------------------------------------------------------------- /Source/CylandEditor/Public/NewCyLandUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/CylandEditor/Public/NewCyLandUtils.h -------------------------------------------------------------------------------- /Source/worldengine2.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2.Target.cs -------------------------------------------------------------------------------- /Source/worldengine2/Ghrbuildertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2/Ghrbuildertest.cpp -------------------------------------------------------------------------------- /Source/worldengine2/Ghrbuildertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2/Ghrbuildertest.h -------------------------------------------------------------------------------- /Source/worldengine2/worldengine2.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2/worldengine2.Build.cs -------------------------------------------------------------------------------- /Source/worldengine2/worldengine2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2/worldengine2.cpp -------------------------------------------------------------------------------- /Source/worldengine2/worldengine2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2/worldengine2.h -------------------------------------------------------------------------------- /Source/worldengine2/worldengine2GameModeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2/worldengine2GameModeBase.cpp -------------------------------------------------------------------------------- /Source/worldengine2/worldengine2GameModeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2/worldengine2GameModeBase.h -------------------------------------------------------------------------------- /Source/worldengine2Editor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/Source/worldengine2Editor.Target.cs -------------------------------------------------------------------------------- /worldengine2.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnIfER/UnrealLandscapeCopy/HEAD/worldengine2.uproject --------------------------------------------------------------------------------