From ffe2b7d74873ba4e573e61b72bcb05cf7db63b8c Mon Sep 17 00:00:00 2001 From: pentamania Date: Fri, 28 May 2021 10:55:53 +0900 Subject: [PATCH] fix app/baseapp access modifiers Change @private to @protected for '_scenes', '_sceneIndex', '_loop' and '_draw' --- src/app/baseapp.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/baseapp.js b/src/app/baseapp.js index 6c9ab8ca..6f0b9206 100644 --- a/src/app/baseapp.js +++ b/src/app/baseapp.js @@ -29,7 +29,7 @@ export class BaseApp extends EventDispatcher { /** * シーンのスタック - * @private + * @protected * @type {SceneTypeUnion[]} */ this._scenes = [new Scene()]; @@ -37,7 +37,7 @@ export class BaseApp extends EventDispatcher { /** * シーンのインデックス値 * アクティブ中のシーン管理に使用 - * @private + * @protected * @type {number} */ this._sceneIndex = 0; @@ -263,7 +263,7 @@ export class BaseApp extends EventDispatcher { } /** - * @private + * @protected * ループ処理関数 * * @returns {void} @@ -278,7 +278,7 @@ export class BaseApp extends EventDispatcher { } /** - * @private + * @protected * 更新処理関数 * * @returns {void}