Recast: fix regression causing tile size slider to not work

Regression was caused in commit f95eb13ab30c78c03c38aa20492389d0fdf39a7f. The m_tileSize member was moved to the base class as this allows us to run the navmesh type selector in the base class which is subclassed by all the other 3 editors. The member wasn't removed from the tilemesh editor class causing it to shadow the base class one.
This commit is contained in:
Kawe Mazidjatari 2024-07-13 00:39:25 +02:00
parent b76f613bd7
commit 912a30610f
2 changed files with 0 additions and 2 deletions

View File

@ -144,7 +144,6 @@ Editor_TileMesh::Editor_TileMesh() :
m_buildAll(true),
m_maxTiles(0),
m_maxPolysPerTile(0),
m_tileSize(32),
m_tileBuildTime(0),
m_tileMemUsage(0),
m_tileTriCount(0)

View File

@ -32,7 +32,6 @@ protected:
int m_maxTiles;
int m_maxPolysPerTile;
int m_tileSize;
float m_tileBuildTime;
float m_tileMemUsage;