Make grid overlays unpickable

This commit is contained in:
Zach Pomerantz 2016-02-18 14:59:31 -08:00
parent b68213f9bf
commit af791e8f72

View file

@ -31,6 +31,9 @@ public:
virtual Grid3DOverlay* createClone() const;
// Grids are UI tools, and may not be intersected (pickable)
virtual bool findRayIntersection(const glm::vec3&, const glm::vec3&, float&, BoxFace&, glm::vec3&) { return false; }
private:
void updateGrid();