mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
b76f613bd7
commit
912a30610f
@ -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)
|
||||
|
@ -32,7 +32,6 @@ protected:
|
||||
|
||||
int m_maxTiles;
|
||||
int m_maxPolysPerTile;
|
||||
int m_tileSize;
|
||||
|
||||
float m_tileBuildTime;
|
||||
float m_tileMemUsage;
|
||||
|
Loading…
x
Reference in New Issue
Block a user