From 18a2d2ad80dbbd24e2be6dfa0467d303d0091caa Mon Sep 17 00:00:00 2001 From: yu-ogi Date: Thu, 14 Nov 2024 09:22:30 +0900 Subject: [PATCH] chore: add comment --- src/AssetManager.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/AssetManager.ts b/src/AssetManager.ts index 3a210de9..030d0864 100644 --- a/src/AssetManager.ts +++ b/src/AssetManager.ts @@ -587,7 +587,12 @@ export class AssetManager implements AssetLoadHandler { return "/" + virtualPath; } - setAssetBundle(assetBundle: AssetBundleConfiguration): void { + /** + * アセットバンドルを設定する。 + * + * @param assetBundle アセットバンドル + */ + setAssetBundle(assetBundle: AssetBundleConfiguration | null): void { this._assetBundle = assetBundle; }