Cesium for Unity 1.15.2
Loading...
Searching...
No Matches
Cesium3DTilesetLoadFailureDetails.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.tileset = tileset;
60 this.type = type;
61 this.httpStatusCode = httpStatusCode;
62 this.message = message;
63 }
64 }
65}
A tileset in the 3D Tiles format.
Cesium3DTilesetLoadType
The type of Cesium3DTileset load that encountered an error.
@ CesiumIon
A Cesium ion asset endpoint.
@ Unknown
An unknown load error.
Holds details of a Cesium3DTileset load failure.
long httpStatusCode
The HTTP status code of the response that led to the failure.
Cesium3DTilesetLoadType type
The type of request that failed to load.
Cesium3DTilesetLoadFailureDetails(Cesium3DTileset tileset, Cesium3DTilesetLoadType type, long httpStatusCode, string message)
Cesium3DTileset tileset
The tileset that encountered the load failure.
string message
A human-readable explanation of what failed.