Navigation
API > API/Plugins > API/Plugins/GeoReferencing > API/Plugins/GeoReferencing/AGeoReferencingSystem
Description
We want to keep the same function names, but with a change in some argument types. UBT doesn't support that unless we create the new functions with a K2_ prefix and use the meta/Displayname tag to keep the same name. To allow for a simple C++ usage too, we keep the C++ functions doing the actual work separately Now that we have used them for the BP Nodes, we can't move the UFUNCTION declaration to the actual new C++ function. Leave them here... Convert a Vector expressed in ENGINE space to the PROJECTED CRS
| Name | K2_EngineToProjected |
| Type | function |
| Header File | /Engine/Plugins/Runtime/GeoReferencing/Source/GeoReferencing/Public/GeoReferencingSystem.h |
| Include Path | #include "GeoReferencingSystem.h" |
UFUNCTION (BlueprintCallable, Category="GeoReferencing|Transformations",
Meta=(DisplayName="Engine To Projected"))
void K2_EngineToProjected
(
const FVector & EngineCoordinates,
FVector & ProjectedCoordinates
)