Merge branch 'aeronic/forest-tune' into 'master'

Aeronic/forest tune

See merge request veloren/veloren!1008
This commit is contained in:
Monty Marz 2020-05-21 04:09:59 +00:00
commit cdee191dd6
8 changed files with 26 additions and 12 deletions

View File

@ -2,6 +2,13 @@
( (
tracks: [ tracks: [
(
title: "Into The Dark Forest",
path: "voxygen.audio.soundtrack.into_the_dark_forest",
length: 184.0,
timing: Some(Night),
artist: "Aeronic",
),
( (
title: "Field Grazing", title: "Field Grazing",
path: "voxygen.audio.soundtrack.field_grazing", path: "voxygen.audio.soundtrack.field_grazing",
@ -17,7 +24,7 @@
artist: "Aeronic", artist: "Aeronic",
), ),
/*( /*(
title: "Snowtop Volume", title: "Snowtop Volume", //Snow Region
path: "voxygen.audio.soundtrack.snowtop_volume", path: "voxygen.audio.soundtrack.snowtop_volume",
length: 89.0, length: 89.0,
timing: Some(Day), timing: Some(Day),
@ -45,7 +52,7 @@
artist: "Aeronic", artist: "Aeronic",
), ),
/*( /*(
title: "Rest Assured", title: "Rest Assured", // Town/Shop
path: "voxygen.audio.soundtrack.rest_assured", path: "voxygen.audio.soundtrack.rest_assured",
length: 185.0, length: 185.0,
timing: Some(Day), timing: Some(Day),
@ -72,7 +79,7 @@
timing: Some(Night), timing: Some(Night),
artist: "badbbad", artist: "badbbad",
), ),
/*( /*( // Dungeon
title: "Down The Rabbit Hole", title: "Down The Rabbit Hole",
path: "voxygen.audio.soundtrack.down_the_rabbit_hole", path: "voxygen.audio.soundtrack.down_the_rabbit_hole",
length: 244.0, length: 244.0,

BIN
assets/voxygen/audio/soundtrack/into_the_dark_forest.ogg (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/background/bg_16.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/element/help.png (Stored with Git LFS)

Binary file not shown.

View File

@ -175,7 +175,7 @@ Sammelt diese mit Rechts-Klick auf.
Um diese zu nutzen öffnet euer Inventar mit 'B'. Um diese zu nutzen öffnet euer Inventar mit 'B'.
Doppelklickt den Gegenstand in eurer Tasche, um dieses zu nutzen. Doppelklickt den Gegenstand in eurer Tasche, um diesen zu nutzen.
Um Items wegzuwerfen klickt sie einmal im Inventar an Um Items wegzuwerfen klickt sie einmal im Inventar an
@ -184,7 +184,7 @@ und klickt dann außerhalb der Tasche.
Die Nächte in Veloren können sehr dunkel werden. Die Nächte in Veloren können sehr dunkel werden.
Um eure Laterne anzuzünden gebt /lantern in den Chat ein. Drückt 'G' um eure Laterne einzuschalten.
Ihr wollt endlich spielen und dafür euren Cursor befreien, Ihr wollt endlich spielen und dafür euren Cursor befreien,

View File

@ -182,7 +182,7 @@ Throw them away by clicking them once and clicking outside of the bag
Nights can get pretty dark in Veloren. Nights can get pretty dark in Veloren.
Equip your lantern and light it by pressing G. Light your lantern by pressing 'G'
Want to free your cursor to close this window? Press TAB! Want to free your cursor to close this window? Press TAB!

View File

@ -894,19 +894,19 @@ impl CharSelectionUi {
let create_button = Button::image(self.imgs.button) let create_button = Button::image(self.imgs.button)
.bottom_right_with_margins_on(ui_widgets.window, 10.0, 10.0) .bottom_right_with_margins_on(ui_widgets.window, 10.0, 10.0)
.w_h(150.0, 40.0) .w_h(150.0, 40.0)
.hover_image(if *name != "Character Name" { .hover_image(if *name != "Character Name" && *name != "" {
self.imgs.button_hover self.imgs.button_hover
} else { } else {
self.imgs.button self.imgs.button
}) })
.press_image(if *name != "Character Name" { .press_image(if *name != "Character Name" && *name != "" {
self.imgs.button_press self.imgs.button_press
} else { } else {
self.imgs.button self.imgs.button
}) })
.label(&self.voxygen_i18n.get("common.create")) .label(&self.voxygen_i18n.get("common.create"))
.label_font_id(self.fonts.cyri.conrod_id) .label_font_id(self.fonts.cyri.conrod_id)
.label_color(if *name != "Character Name" { .label_color(if *name != "Character Name" && *name != "" {
TEXT_COLOR TEXT_COLOR
} else { } else {
TEXT_COLOR_2 TEXT_COLOR_2
@ -914,7 +914,7 @@ impl CharSelectionUi {
.label_font_size(self.fonts.cyri.scale(20)) .label_font_size(self.fonts.cyri.scale(20))
.label_y(conrod_core::position::Relative::Scalar(3.0)); .label_y(conrod_core::position::Relative::Scalar(3.0));
if *name == "Character Name" { if *name == "Character Name" || *name == "" {
//TODO: We need a server side list of disallowed names and certain naming rules //TODO: We need a server side list of disallowed names and certain naming rules
if create_button if create_button
.with_tooltip( .with_tooltip(

View File

@ -183,6 +183,7 @@ impl MainMenuUi {
"voxygen.background.bg_13", "voxygen.background.bg_13",
"voxygen.background.bg_14", "voxygen.background.bg_14",
"voxygen.background.bg_15", "voxygen.background.bg_15",
"voxygen.background.bg_16",
]; ];
let mut rng = thread_rng(); let mut rng = thread_rng();