Fixed Model Matrix Not Working

Was caused by copying the batch instead of using the correct format
of using a reference
This commit is contained in:
elipzer 2018-09-13 22:46:36 -04:00
parent d63f341d89
commit b533e2a408

View File

@ -15,5 +15,5 @@ public:
private: private:
BasicRenderable m_shape; BasicRenderable m_shape;
Camera2D m_camera; Camera2D m_camera;
BasicBatch m_batch; BasicBatch& m_batch;
}; };