Client: Fixed a typo in the waypoint editor, added color coding... removed

some redundant newlines in the text
This commit is contained in:
Marco Cawthorne 2021-01-02 21:52:35 +01:00
parent 8933452364
commit 6dc054f94b
2 changed files with 12 additions and 9 deletions

View file

@ -524,8 +524,14 @@ Way_DrawDebugInfo(void)
}
if (fl & LF_CROUCH) {
R_PolygonVertex(org + [0,0,-1], [0,1], [0,0,1], 1);
R_PolygonVertex(w2->m_vecOrigin + [0,0,-1], [1,1], [0,0,1], 1);
R_PolygonVertex(org + [0,0,-2], [0,1], [0,1,0], 1);
R_PolygonVertex(w2->m_vecOrigin + [0,0,-2], [1,1], [0,0,0], 1);
R_EndPolygon();
}
if (fl & LF_WALK) {
R_PolygonVertex(org + [0,0,-1], [0,1], [1,0,0], 1);
R_PolygonVertex(w2->m_vecOrigin + [0,0,-1], [1,1], [0,0,0], 1);
R_EndPolygon();
}

View file

@ -46,7 +46,6 @@ Way_Init(void)
"\n" \
"\n" \
"\n" \
"\n" \
"9.\tBack\n";
way_file.m_flPosX = 0;
way_file.m_flPosY = -1;
@ -64,7 +63,6 @@ Way_Init(void)
"\n" \
"\n" \
"\n" \
"\n" \
"9.\tBack\n";
way_add.m_flPosX = 0;
way_add.m_flPosY = -1;
@ -80,8 +78,7 @@ Way_Init(void)
"\n" \
"\n" \
"\n" \
"\n" \
"3.\tAutolink closest\n" \
"7.\tAutolink closest\n" \
"\n" \
"9.\tBack\n";
way_link.m_flPosX = 0;
@ -109,9 +106,9 @@ Way_Init(void)
{
titles_t way_flags;
way_flags.m_strName = "WAY_FLAGS";
way_flags.m_strMessage = "1.\tFlag jump (2 steps)\n" \
"2.\tFlag crouch (2 steps)\n" \
"3.\tFlag walk (2 steps)\n" \
way_flags.m_strMessage = "1.\tFlag ^3JUMP^7 (2 steps)\n" \
"2.\tFlag ^2CROUCH^7 (2 steps)\n" \
"3.\tFlag ^1WALK^7 (2 steps)\n" \
"\n" \
"\n" \
"\n" \