Cesium for Unity 1.15.2
Loading...
Searching...
No Matches
CesiumRasterOverlayLoadFailureDetails.cs
Go to the documentation of this file.
1namespace CesiumForUnity
2{
7 {
11 Unknown,
12
17
22 }
23
28 {
33
38
46 public long httpStatusCode;
47
51 public string message;
52
56 long httpStatusCode,
57 string message)
58 {
59 this.overlay = overlay;
60 this.type = type;
61 this.httpStatusCode = httpStatusCode;
62 this.message = message;
63 }
64 }
65}
A pyramid of 2D images - sometimes terabytes or more in size - that can be draped over a Cesium3DTile...
@ CesiumIon
A Cesium ion asset endpoint.
@ Unknown
An unknown load error.
CesiumRasterOverlayLoadType
The type of CesiumRasterOverlay load that encountered an error.
@ TileProvider
An initial load needed to create the overlay's tile provider.
long httpStatusCode
The HTTP status code of the response that led to the failure.
CesiumRasterOverlayLoadFailureDetails(CesiumRasterOverlay overlay, CesiumRasterOverlayLoadType type, long httpStatusCode, string message)
CesiumRasterOverlay overlay
The overlay that encountered the load failure.
CesiumRasterOverlayLoadType type
The type of request that failed to load.
string message
A human-readable explanation of what failed.