@@ -38,7 +38,7 @@ source distribution.
38
38
39
39
namespace
40
40
{
41
- const sf::Uint32 charSize = 48u ;
41
+ const sf::Uint32 charSize = 46u ;
42
42
const float fadeTime = 0 .25f ;
43
43
44
44
const float planktonSize = 32 .f;
@@ -50,7 +50,7 @@ HelpState::HelpState(StateStack& stack, Context context)
50
50
m_messageBus(context.appInstance.getMessageBus()),
51
51
m_physWorld (m_messageBus),
52
52
m_rootNode (m_messageBus),
53
- m_ticker (context.appInstance.getFont(" assets/fonts/Ardeco.ttf " )),
53
+ m_ticker (context.appInstance.getFont(" " )),
54
54
m_fadeTime (0 .f)
55
55
{
56
56
m_menuSprite.setTexture (context.appInstance .getTexture (" assets/images/help_menu.png" ));
@@ -66,8 +66,8 @@ HelpState::HelpState(StateStack& stack, Context context)
66
66
addPlankton (PlanktonController::Type::Bonus);
67
67
addPlankton (PlanktonController::Type::UberLife);
68
68
69
- m_ticker.setSize ({ 0 .f , 0 .f , 1930 .f , 60 .f });
70
- m_ticker.setPosition (0 .f , 980 .f );
69
+ m_ticker.setSize ({ 0 .f , 0 .f , 1930 .f , 40 .f });
70
+ m_ticker.setPosition (0 .f , 950 .f );
71
71
m_ticker.addItem (" Acknowledgements (in no particular order): " );
72
72
m_ticker.addItem (" eXpl0it3r, " );
73
73
m_ticker.addItem (" Tank, " );
@@ -198,7 +198,7 @@ void HelpState::addText()
198
198
titleText.setPosition (centrePos);
199
199
titleText.move (0 .f , -100 .f );
200
200
201
- m_texts.emplace_back (" Absorb green plankton to prevent starvation " , font, charSize);
201
+ m_texts.emplace_back (" Absorb green plankton by hovering over them " , font, charSize);
202
202
auto & text01 = m_texts.back ();
203
203
Util::Position::centreOrigin (text01);
204
204
text01.setPosition (centrePos);
@@ -216,7 +216,7 @@ void HelpState::addText()
216
216
text03.setPosition (centrePos);
217
217
text03.move (0 .f , 140 .f );
218
218
219
- m_texts.emplace_back (" Avoid collisions and live as long as you can ." , font, charSize);
219
+ m_texts.emplace_back (" Use WASD or Arrow keys or a controller ." , font, charSize);
220
220
auto & text04 = m_texts.back ();
221
221
Util::Position::centreOrigin (text04);
222
222
text04.setPosition (centrePos);
0 commit comments