HeatMap.cpp 687 B

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