mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-07 14:30:40 +00:00
Update navEditor.tscript
filter out vehicle
This commit is contained in:
parent
f730d0bf1c
commit
715a2484a0
1 changed files with 2 additions and 1 deletions
|
|
@ -436,7 +436,8 @@ function NavMeshTestTool::onActivated(%this)
|
|||
SpawnClassSelector.clear();
|
||||
foreach$(%class in %classList)
|
||||
{
|
||||
SpawnClassSelector.add(%class);
|
||||
if(%class !$= "Vehicle") // vehicle doesnt work, purely virtual class.
|
||||
SpawnClassSelector.add(%class);
|
||||
}
|
||||
|
||||
SpawnClassSelector.setFirstSelected(true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue