1234567891011121314151617181920212223 |
- /*
- * @Author: namidame
- * @Description: A Heatmap Generate Plugin, Supports Heightmap, Texture Coordinate Points And Geographic Location Data.
- * @Date: 2023/03/24
- */
- #include "HeatMap.h"
- #define LOCTEXT_NAMESPACE "FHeatMapModule"
- void FHeatMapModule::StartupModule()
- {
- // This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module
- }
- void FHeatMapModule::ShutdownModule()
- {
- // This function may be called during shutdown to clean up your module. For modules that support dynamic reloading,
- // we call this function before unloading the module.
- }
- #undef LOCTEXT_NAMESPACE
-
- IMPLEMENT_MODULE(FHeatMapModule, HeatMap)
|