Translation file

This commit is contained in:
Martin
2022-12-13 16:41:51 +01:00
parent 40136c746a
commit c20ca61290
4 changed files with 32 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ export class LevelUpSkill extends Component {
public init(skillType: UpgradeType): void {
this.skillType = skillType;
this.skillTitle.string = `Skill ${skillType}`;
this.skillTitle.string = `${skillType}`;
this.node.on(NodeEventType.MOUSE_DOWN, this.chooseSkill, this);
}

View File

@@ -1,10 +1,10 @@
export enum UpgradeType {
WeaponLength,
WeaponDamage,
HorizontalProjectile,
DiagonalProjectile,
HaloProjectlie,
Regeneration
WeaponLength = "WEAPON_LENGTH",
WeaponDamage = "WEAPON_DAMAGE",
HorizontalProjectile = "HORIZONTAL_PROJECTILE",
DiagonalProjectile = "DIAGONAL_PROJECTILE",
HaloProjectlie = "HALO_PROJECTILE",
Regeneration = "REGENERATION"
}
export enum MetaUpgradeType {