-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
230 additions
and
100 deletions.
There are no files selected for viewing
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* @description ライブラリのプレビューエリアのElementのID | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $LIBRARY_PREVIEW_AREA_ID: string = "library-preview-area"; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* @description ステージのElementのID | ||
* ID of the Element of the stage | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $SCREEN_STAGE_ID: string = "stage"; | ||
|
||
/** | ||
* @description ステージエリアのElementのID | ||
* ID of Element in Stage Area | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $SCREEN_STAGE_AREA_ID: string = "stage-area"; | ||
|
||
/** | ||
* @description スクリーンエリアのElementのID | ||
* ID of the Element in the screen area | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $SCREEN_ID: string = "screen"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/** | ||
* @description ステージの横幅の初期値 | ||
* Default stage width | ||
* | ||
* @type {number} | ||
* @constant | ||
*/ | ||
export const $STAGE_DEFAULT_WIDTH: number = 550; | ||
|
||
/** | ||
* @description ステージの高さの初期値 | ||
* Default stage height | ||
* | ||
* @type {number} | ||
* @constant | ||
*/ | ||
export const $STAGE_DEFAULT_HEIGHT: number = 400; | ||
|
||
/** | ||
* @description ステージのフレームレートの初期値 | ||
* Default stage frame rate | ||
* | ||
* @type {number} | ||
* @constant | ||
*/ | ||
export const $STAGE_DEFAULT_FPS: number = 24; | ||
|
||
/** | ||
* @description ステージの初期背景色 | ||
* Initial background color of the stage | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $STAGE_DEFAULT_COLOR: string = "#ffffff"; | ||
|
||
/** | ||
* @description ステージの幅のElementのID | ||
* ID of Element of Stage Width | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $STAGE_WIDTH_ID: string = "stage-width"; | ||
|
||
/** | ||
* @description ステージの高さのElementのID | ||
* ID of Element of Stage Height | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $STAGE_HEIGHT_ID: string = "stage-height"; | ||
|
||
/** | ||
* @description ステージのFPS設定のElementのID | ||
* ID of the Element of the FPS setting of the stage | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $STAGE_FPS_ID: string = "stage-fps"; | ||
|
||
/** | ||
* @description ステージの背景色のElementのID | ||
* ID of the Element of the stage background color | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $STAGE_BG_COLOR_ID: string = "stage-bgColor"; | ||
|
||
/** | ||
* @description ステージの幅高さのロックのElementのID | ||
* ID of Element of Stage Width Height Lock | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $STAGE_LOCK_ID: string = "stage-lock"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* @description タイムラインの高さの初期値 | ||
* Default height of timeline | ||
* | ||
* @type {number} | ||
* @constant | ||
*/ | ||
export const $TIMELINE_DEFAULT_HEIGHT_SIZE: number = 280; | ||
|
||
/** | ||
* @description タイムラインのラベル設定のElementのID | ||
* ID of the Element for the timeline label setting | ||
* | ||
* @type {string} | ||
* @constant | ||
*/ | ||
export const $TIMELINE_LABEL_NAME: string = "label-name"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* @description タイムラインのレイヤー状態管理クラス | ||
* Timeline layer state management class | ||
* | ||
* @class | ||
* @public | ||
*/ | ||
export class Layer | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.