Merge remote-tracking branch 'github/master'

This commit is contained in:
Renge 2022-05-09 16:41:52 -04:00
commit a757d4e514
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -46,10 +46,10 @@ export default class MainMenu extends Scene {
this.mainMenu = this.addUILayer("mainMenu"); this.mainMenu = this.addUILayer("mainMenu");
this.add.sprite("background", "mainMenu"); this.add.sprite("background", "mainMenu");
const seedHint = <Label>this.add.uiElement(UIElementType.LABEL, "mainMenu", {position: new Vec2(center.x, center.y - 200), text: "Enter seed or leave it blank to randomly generate one"}); const seedHint = <Label>this.add.uiElement(UIElementType.LABEL, "mainMenu", {position: new Vec2(center.x, center.y - 300), text: "Enter seed or leave it blank to randomly generate one"});
seedHint.textColor = Color.WHITE; seedHint.textColor = Color.WHITE;
this.seedInput = <TextInput>this.add.uiElement(UIElementType.TEXT_INPUT, "mainMenu", {position: new Vec2(center.x, center.y - 150), text: ""}) this.seedInput = <TextInput>this.add.uiElement(UIElementType.TEXT_INPUT, "mainMenu", {position: new Vec2(center.x, center.y - 250), text: ""})
this.seedInput.size.set(200, 50); this.seedInput.size.set(200, 50);
// Add map button, and give it an event to emit on press // Add map button, and give it an event to emit on press