Scrolling Combat Text (SCT)

This commit is contained in:
Monty Marz
2020-01-10 00:33:38 +00:00
parent 4e7c955490
commit 851d7858e6
49 changed files with 1411 additions and 173 deletions

View File

@ -69,8 +69,10 @@ impl PlayState for MainMenuState {
// Poll client creation.
match client_init.as_ref().and_then(|init| init.poll()) {
Some(Ok(client)) => {
Some(Ok(mut client)) => {
self.main_menu_ui.connected();
// Register voxygen components / resources
crate::ecs::init(client.state_mut().ecs_mut());
return PlayStateResult::Push(Box::new(CharSelectionState::new(
global_state,
std::rc::Rc::new(std::cell::RefCell::new(client)),