Skip to content

Commit

Permalink
fix app/baseapp access modifiers
Browse files Browse the repository at this point in the history
Change @Private to @Protected for '_scenes', '_sceneIndex', '_loop' and '_draw'
  • Loading branch information
pentamania committed May 28, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 7a0a1f9 commit ffe2b7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/baseapp.js
Original file line number Diff line number Diff line change
@@ -29,15 +29,15 @@ export class BaseApp extends EventDispatcher {

/**
* シーンのスタック
* @private
* @protected
* @type {SceneTypeUnion[]}
*/
this._scenes = [new Scene()];

/**
* シーンのインデックス値
* アクティブ中のシーン管理に使用
* @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}

0 comments on commit ffe2b7d

Please sign in to comment.