This commit is contained in:
dgflash
2022-09-05 14:41:02 +08:00
parent dd8082ac22
commit 2c46e5b080
2 changed files with 9 additions and 4 deletions

View File

@@ -227,7 +227,7 @@
"_priority": 1073741824,
"_fov": 45,
"_fovAxis": 0,
"_orthoHeight": 429.18454935622316,
"_orthoHeight": 405.531475748194,
"_near": 1,
"_far": 2000,
"_color": {

View File

@@ -1,3 +1,9 @@
/*
* @Author: dgflash
* @Date: 2022-08-09 11:51:38
* @LastEditors: dgflash
* @LastEditTime: 2022-09-05 13:58:42
*/
import { JsonUtil } from "../../../../../extensions/oops-plugin-framework/assets/core/utils/JsonUtil";
@@ -16,12 +22,11 @@ export class TableRoleLevelUp {
id: number = 0;
/** 升级所需经验 */
get needexp(): string {
get needexp(): number {
return this.data.needexp;
}
/** 升级增加生命 */
get hp(): string {
get hp(): number {
return this.data.hp;
}
}