Added position in chunk and pointer to current chunk data to sampler.

This commit is contained in:
David Williams
2015-03-30 23:33:51 +02:00
parent d34c1d227c
commit 120b8e84cc
2 changed files with 16 additions and 9 deletions

View File

@ -243,6 +243,11 @@ namespace PolyVox
private:
//Other current position information
VoxelType* mCurrentVoxel;
VoxelType* m_CurrentChunkData;
uint16_t m_uXPosInChunk;
uint16_t m_uYPosInChunk;
uint16_t m_uZPosInChunk;
};
#endif