-
Notifications
You must be signed in to change notification settings - Fork 97
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
1 parent
197f7b3
commit 751d113
Showing
53 changed files
with
16,628 additions
and
0 deletions.
There are no files selected for viewing
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,66 @@ | ||
/* | ||
* Copyright(c) Live2D Inc. All rights reserved. | ||
* | ||
* Use of this source code is governed by the Live2D Open Software license | ||
* that can be found at http://live2d.com/eula/live2d-open-software-license-agreement_en.html. | ||
*/ | ||
|
||
/** | ||
* @brief パラメータIDのデフォルト値を保持する定数<br> | ||
* デフォルト値の仕様は以下のマニュアルに基づく<br> | ||
* http://docs.live2d.com/cubism-editor-manual/standard-parametor-list/ | ||
*/ | ||
export namespace Live2DCubismFramework | ||
{ | ||
// パーツID | ||
export const HitAreaPrefix: string = "HitArea"; | ||
export const HitAreaHead: string = "Head"; | ||
export const HitAreaBody: string = "Body"; | ||
export const PartsIdCore: string = "Parts01Core"; | ||
export const PartsArmPrefix: string = "Parts01Arm_"; | ||
export const PartsArmLPrefix: string = "Parts01ArmL_"; | ||
export const PartsArmRPrefix: string = "Parts01ArmR_"; | ||
|
||
// パラメータID | ||
export const ParamAngleX: string = "ParamAngleX"; | ||
export const ParamAngleY: string = "ParamAngleY"; | ||
export const ParamAngleZ: string = "ParamAngleZ"; | ||
export const ParamEyeLOpen: string = "ParamEyeLOpen"; | ||
export const ParamEyeLSmile: string = "ParamEyeLSmile"; | ||
export const ParamEyeROpen: string = "ParamEyeROpen"; | ||
export const ParamEyeRSmile: string = "ParamEyeRSmile"; | ||
export const ParamEyeBallX: string = "ParamEyeBallX"; | ||
export const ParamEyeBallY: string = "ParamEyeBallY"; | ||
export const ParamEyeBallForm: string = "ParamEyeBallForm"; | ||
export const ParamBrowLY: string = "ParamBrowLY"; | ||
export const ParamBrowRY: string = "ParamBrowRY"; | ||
export const ParamBrowLX: string = "ParamBrowLX"; | ||
export const ParamBrowRX: string = "ParamBrowRX"; | ||
export const ParamBrowLAngle: string = "ParamBrowLAngle"; | ||
export const ParamBrowRAngle: string = "ParamBrowRAngle"; | ||
export const ParamBrowLForm: string = "ParamBrowLForm"; | ||
export const ParamBrowRForm: string = "ParamBrowRForm"; | ||
export const ParamMouthForm: string = "ParamMouthForm"; | ||
export const ParamMouthOpenY: string = "ParamMouthOpenY"; | ||
export const ParamCheek: string = "ParamCheek"; | ||
export const ParamBodyAngleX: string = "ParamBodyAngleX"; | ||
export const ParamBodyAngleY: string = "ParamBodyAngleY"; | ||
export const ParamBodyAngleZ: string = "ParamBodyAngleZ"; | ||
export const ParamBreath: string = "ParamBreath"; | ||
export const ParamArmLA: string = "ParamArmLA"; | ||
export const ParamArmRA: string = "ParamArmRA"; | ||
export const ParamArmLB: string = "ParamArmLB"; | ||
export const ParamArmRB: string = "ParamArmRB"; | ||
export const ParamHandL: string = "ParamHandL"; | ||
export const ParamHandR: string = "ParamHandR"; | ||
export const ParamHairFront: string = "ParamHairFront"; | ||
export const ParamHairSide: string = "ParamHairSide"; | ||
export const ParamHairBack: string = "ParamHairBack"; | ||
export const ParamHairFluffy: string = "ParamHairFluffy"; | ||
export const ParamShoulderY: string = "ParamShoulderY"; | ||
export const ParamBustX: string = "ParamBustX"; | ||
export const ParamBustY: string = "ParamBustY"; | ||
export const ParamBaseX: string = "ParamBaseX"; | ||
export const ParamBaseY: string = "ParamBaseY"; | ||
export const ParamNONE: string = "NONE:"; | ||
} |
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,32 @@ | ||
/* | ||
* Copyright(c) Live2D Inc. All rights reserved. | ||
* | ||
* Use of this source code is governed by the Live2D Open Software license | ||
* that can be found at http://live2d.com/eula/live2d-open-software-license-agreement_en.html. | ||
*/ | ||
|
||
//======================================================== | ||
// ログ出力関数の設定 | ||
//======================================================== | ||
|
||
//---------- ログ出力レベル 選択項目 定義 ---------- | ||
/// 詳細ログ出力設定 | ||
export const CSM_LOG_LEVEL_VERBOSE: number = 0; | ||
/// デバッグログ出力設定 | ||
export const CSM_LOG_LEVEL_DEBUG: number = 1; | ||
/// Infoログ出力設定 | ||
export const CSM_LOG_LEVEL_INFO: number = 2; | ||
/// 警告ログ出力設定 | ||
export const CSM_LOG_LEVEL_WARNING: number = 3; | ||
/// エラーログ出力設定 | ||
export const CSM_LOG_LEVEL_ERROR: number = 4; | ||
/// ログ出力オフ設定 | ||
export const CSM_LOG_LEVEL_OFF: number = 5; | ||
|
||
/** | ||
* ログ出力レベル設定。 | ||
* | ||
* 強制的にログ出力レベルを変える時に定義を有効にする。 | ||
* CSM_LOG_LEVEL_VERBOSE ~ CSM_LOG_LEVEL_OFF を選択する。 | ||
*/ | ||
export const CSM_LOG_LEVEL: number = CSM_LOG_LEVEL_VERBOSE; |
Oops, something went wrong.