|
@@ -105,10 +105,15 @@ bool NavMeshSelectTool::updateGuiInfo()
|
|
|
Sim::findObject("EWorldEditorStatusBarSelection", selectionBar);
|
|
|
|
|
|
String text;
|
|
|
+ text = "LMB To select a NavMesh.";
|
|
|
|
|
|
if (statusbar)
|
|
|
Con::executef(statusbar, "setInfo", text.c_str());
|
|
|
|
|
|
+ text = "";
|
|
|
+ if(mSelMesh)
|
|
|
+ text = String::ToString("NavMesh Selected: %d", mSelMesh->getId());
|
|
|
+
|
|
|
if (selectionBar)
|
|
|
selectionBar->setText(text);
|
|
|
|