There was an error while loading. Please reload this page.
1 parent 9a5d976 commit 079235bCopy full SHA for 079235b
1 file changed
Runtime/CesiumCreditSystem.cs
@@ -267,11 +267,19 @@ public static CesiumCreditSystem GetDefaultCreditSystem()
267
return _defaultCreditSystem;
268
}
269
270
+ /// <summary>
271
+ /// Gets the number of images on this credit system that are being loaded.
272
+ /// </summary>
273
+ /// <returns>The number of loading images.</returns>
274
internal int GetNumberOfLoadingImages()
275
{
276
return this._numLoadingImages;
277
278
279
280
+ /// A function invoked with StartCoroutine() to asynchronously load images from an HTML credit.
281
282
+ /// <param name="url">A string containing either the base64-encoded image data or the URL of the image.</param>
283
internal IEnumerator LoadImage(string url)
284
285
int index = this._images.Count;
0 commit comments