├── .gitignore ├── LICENSE ├── Landscape_1.sln ├── Landscape_1.uproject ├── README.md └── Source ├── Landscape_1.Target.cs ├── Landscape_1 ├── Landscape_1.Build.cs ├── Landscape_1.cpp ├── Landscape_1.h ├── Private │ ├── FCalculateTileTask.cpp │ ├── FoliageGroupTileActor.cpp │ ├── FoliageTileActor.cpp │ ├── FoliageTileBlockingVolume.cpp │ ├── ForestTileActor.cpp │ ├── SimplexNoise.cpp │ ├── SimplexNoise.h │ ├── TileActor.cpp │ └── TileUtils.cpp └── Public │ ├── FCalculateTileTask.h │ ├── FoliageGroup.h │ ├── FoliageGroupTileActor.h │ ├── FoliageTileActor.h │ ├── FoliageTileBlockingVolume.h │ ├── ForestTileActor.h │ ├── TileActor.h │ └── TileUtils.h └── Landscape_1Editor.Target.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/LICENSE -------------------------------------------------------------------------------- /Landscape_1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Landscape_1.sln -------------------------------------------------------------------------------- /Landscape_1.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Landscape_1.uproject -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/README.md -------------------------------------------------------------------------------- /Source/Landscape_1.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1.Target.cs -------------------------------------------------------------------------------- /Source/Landscape_1/Landscape_1.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Landscape_1.Build.cs -------------------------------------------------------------------------------- /Source/Landscape_1/Landscape_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Landscape_1.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Landscape_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Landscape_1.h -------------------------------------------------------------------------------- /Source/Landscape_1/Private/FCalculateTileTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/FCalculateTileTask.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Private/FoliageGroupTileActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/FoliageGroupTileActor.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Private/FoliageTileActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/FoliageTileActor.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Private/FoliageTileBlockingVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/FoliageTileBlockingVolume.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Private/ForestTileActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/ForestTileActor.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Private/SimplexNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/SimplexNoise.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Private/SimplexNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/SimplexNoise.h -------------------------------------------------------------------------------- /Source/Landscape_1/Private/TileActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/TileActor.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Private/TileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Private/TileUtils.cpp -------------------------------------------------------------------------------- /Source/Landscape_1/Public/FCalculateTileTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/FCalculateTileTask.h -------------------------------------------------------------------------------- /Source/Landscape_1/Public/FoliageGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/FoliageGroup.h -------------------------------------------------------------------------------- /Source/Landscape_1/Public/FoliageGroupTileActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/FoliageGroupTileActor.h -------------------------------------------------------------------------------- /Source/Landscape_1/Public/FoliageTileActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/FoliageTileActor.h -------------------------------------------------------------------------------- /Source/Landscape_1/Public/FoliageTileBlockingVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/FoliageTileBlockingVolume.h -------------------------------------------------------------------------------- /Source/Landscape_1/Public/ForestTileActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/ForestTileActor.h -------------------------------------------------------------------------------- /Source/Landscape_1/Public/TileActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/TileActor.h -------------------------------------------------------------------------------- /Source/Landscape_1/Public/TileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1/Public/TileUtils.h -------------------------------------------------------------------------------- /Source/Landscape_1Editor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/TileActor/HEAD/Source/Landscape_1Editor.Target.cs --------------------------------------------------------------------------------