Skip to content

Commit

Permalink
{} -> =
Browse files Browse the repository at this point in the history
  • Loading branch information
j9liu committed Oct 31, 2024
1 parent 8aa2cff commit 6eb4718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/CesiumRuntime/Public/CesiumSampleHeightResult.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct CESIUMRUNTIME_API FCesiumSampleHeightResult {
* is false.
*/
UPROPERTY(BlueprintReadWrite, Category = "Cesium")
FVector LongitudeLatitudeHeight{0.0, 0.0, 0.0};
FVector LongitudeLatitudeHeight = {0.0, 0.0, 0.0};

/**
* True if the height as sampled from the tileset successfully. False if the
Expand All @@ -28,5 +28,5 @@ struct CESIUMRUNTIME_API FCesiumSampleHeightResult {
* will have more information about the problem.
*/
UPROPERTY(BlueprintReadWrite, Category = "Cesium")
bool SampleSuccess{false};
bool SampleSuccess = false;
};

0 comments on commit 6eb4718

Please sign in to comment.