Skip to content

Commit a43ea4f

Browse files
committed
Merge branch 'url-template-overlay' of github.com:CesiumGS/cesium-unity into url-template-overlay
2 parents dbf1f9e + de8729c commit a43ea4f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Editor/CesiumUrlTemplateRasterOverlayEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private void DrawUrlTemplateProperties()
117117

118118
EditorGUILayout.PropertyField(
119119
this._projection,
120-
new GUIContent("Projection", "The type of projection used to protect the imagery onto the globe."));
120+
new GUIContent("Projection", "The type of projection used to project the imagery onto the globe."));
121121

122122
EditorGUILayout.PropertyField(
123123
this._specifyTilingScheme,

Runtime/CesiumUrlTemplateRasterOverlay.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public string templateUrl
7878
private CesiumUrlTemplateRasterOverlayProjection _projection = CesiumUrlTemplateRasterOverlayProjection.WebMercator;
7979

8080
/// <summary>
81-
/// The type of projection used to protect the imagery onto the globe.
81+
/// The type of projection used to project the imagery onto the globe.
8282
///
8383
/// For instance, EPSG:4326 uses geographic projection and EPSG:3857 uses Web Mercator.
8484
/// </summary>
@@ -206,7 +206,7 @@ public double rectangleEast
206206
}
207207

208208
[SerializeField]
209-
private double _rectangleNorth = -90.0;
209+
private double _rectangleNorth = 90.0;
210210

211211
/// <summary>
212212
/// The north boundary of the bounding rectangle used for the quadtree tiling

native~/Runtime/src/CameraManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ViewState unityCameraToViewState(
8282
? georeference.ellipsoid().NativeImplementation().GetEllipsoid()
8383
: CesiumGeospatial::Ellipsoid::WGS84;
8484

85-
return ViewState::create(
85+
return ViewState(
8686
cameraPosition,
8787
glm::normalize(cameraDirection),
8888
glm::normalize(cameraUp),

native~/extern/cesium-native

Submodule cesium-native updated 58 files

0 commit comments

Comments
 (0)