Scoreboard with more data
by Marcus Nielsen · in Torque Game Engine · 02/27/2007 (4:52 pm) · 1 replies
Ive made the scoreboard (when you press F2) take additional parameters, so instead of the old
"Name Score"
I now have
"Name Team Kills Deaths Ranking"
The problem is that I cannot get more than two fields visible per row.
So I get
"Smith Blue"
displayed in the scoreboard.
But the string actually looks OK, containing the three last parameter-numbers.
Can anyone tell me where to find more information about why there is a limit on two visible fields?
I am really stuck here =(
Oh, and sorry for not showing the code, but the code is working just fine and it is split up in 5 different files =)
"Name Score"
I now have
"Name Team Kills Deaths Ranking"
The problem is that I cannot get more than two fields visible per row.
So I get
"Smith Blue"
displayed in the scoreboard.
But the string actually looks OK, containing the three last parameter-numbers.
Can anyone tell me where to find more information about why there is a limit on two visible fields?
I am really stuck here =(
Oh, and sorry for not showing the code, but the code is working just fine and it is split up in 5 different files =)
Torque Owner Marcus Nielsen
new GuiTextListCtrl(PlayerListGuiList) {
...
columns = (0 120);
...
to
...columns = (0 50 100 150 200);
I kinda thought 0 and 120 stood for X and Y coords =)
Well, problem solved anyhow.