mirror of
https://github.com/Relintai/godot_voxel.git
synced 2024-11-19 02:47:18 +01:00
Fixed bad position validation in VoxelBuffer
This commit is contained in:
parent
beace8709b
commit
b85e696b7b
@ -83,7 +83,7 @@ public:
|
||||
void copy_from(const VoxelBuffer &other, Vector3i src_min, Vector3i src_max, Vector3i dst_min, unsigned int channel_index = 0);
|
||||
|
||||
_FORCE_INLINE_ bool validate_pos(unsigned int x, unsigned int y, unsigned int z) const {
|
||||
return x < _size.x && y < _size.y && z < _size.x;
|
||||
return x < _size.x && y < _size.y && z < _size.z;
|
||||
}
|
||||
|
||||
_FORCE_INLINE_ unsigned int index(unsigned int x, unsigned int y, unsigned int z) const {
|
||||
|
Loading…
Reference in New Issue
Block a user