mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Fix web entities incorrect dimensions
This commit is contained in:
parent
5b660e8c91
commit
f753a54494
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ void RenderableWebEntityItem::render(RenderArgs* args) {
|
|||
Q_ASSERT(getType() == EntityTypes::Web);
|
||||
static const glm::vec2 texMin(0.0f);
|
||||
static const glm::vec2 texMax(1.0f);
|
||||
glm::vec2 topLeft(-0.5f -0.5f);
|
||||
glm::vec2 topLeft(-0.5f, -0.5f);
|
||||
glm::vec2 bottomRight(0.5f, 0.5f);
|
||||
|
||||
Q_ASSERT(args->_batch);
|
||||
|
|
Loading…
Reference in a new issue