mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2024-12-26 03:38:58 +00:00
Translation file
This commit is contained in:
parent
40136c746a
commit
c20ca61290
14
assets/Data/eng.json
Normal file
14
assets/Data/eng.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"WEAPON_LENGTH_TITLE": "",
|
||||||
|
"WEAPON_LENGTH_DESC": "",
|
||||||
|
"WEAPON_DAMAGE_TITLE": "",
|
||||||
|
"WEAPON_DAMAGE_DESC": "",
|
||||||
|
"HORIZONTAL_PROJECTILE_TITLE": "",
|
||||||
|
"HORIZONTAL_PROJECTILE_DESC": "",
|
||||||
|
"DIAGONAL_PROJECTILE_TITLE": "",
|
||||||
|
"DIAGONAL_PROJECTILE_DESC": "",
|
||||||
|
"HALO_PROJECTILE_TITLE": "",
|
||||||
|
"HALO_PROJECTILE_DESC": "",
|
||||||
|
"REGENERATION_TITLE": "",
|
||||||
|
"REGENERATION_DESC": ""
|
||||||
|
}
|
11
assets/Data/eng.json.meta
Normal file
11
assets/Data/eng.json.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"ver": "1.0.0",
|
||||||
|
"importer": "json",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "7d43843c-0765-427c-9161-2fd9030369c8",
|
||||||
|
"files": [
|
||||||
|
".json"
|
||||||
|
],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -12,7 +12,7 @@ export class LevelUpSkill extends Component {
|
|||||||
|
|
||||||
public init(skillType: UpgradeType): void {
|
public init(skillType: UpgradeType): void {
|
||||||
this.skillType = skillType;
|
this.skillType = skillType;
|
||||||
this.skillTitle.string = `Skill ${skillType}`;
|
this.skillTitle.string = `${skillType}`;
|
||||||
this.node.on(NodeEventType.MOUSE_DOWN, this.chooseSkill, this);
|
this.node.on(NodeEventType.MOUSE_DOWN, this.chooseSkill, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
export enum UpgradeType {
|
export enum UpgradeType {
|
||||||
WeaponLength,
|
WeaponLength = "WEAPON_LENGTH",
|
||||||
WeaponDamage,
|
WeaponDamage = "WEAPON_DAMAGE",
|
||||||
HorizontalProjectile,
|
HorizontalProjectile = "HORIZONTAL_PROJECTILE",
|
||||||
DiagonalProjectile,
|
DiagonalProjectile = "DIAGONAL_PROJECTILE",
|
||||||
HaloProjectlie,
|
HaloProjectlie = "HALO_PROJECTILE",
|
||||||
Regeneration
|
Regeneration = "REGENERATION"
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum MetaUpgradeType {
|
export enum MetaUpgradeType {
|
||||||
|
Loading…
Reference in New Issue
Block a user