mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 19:57:11 +02:00
Fix for array size.
This commit is contained in:
parent
04006a9f76
commit
6e0ddadb29
1 changed files with 1 additions and 1 deletions
|
@ -1812,7 +1812,7 @@ void MyAvatar::postUpdate(float deltaTime) {
|
||||||
|
|
||||||
if (_enableDebugDrawDetailedCollision) {
|
if (_enableDebugDrawDetailedCollision) {
|
||||||
AnimPose rigToWorldPose(glm::vec3(1.0f), getRotation() * Quaternions::Y_180, getPosition());
|
AnimPose rigToWorldPose(glm::vec3(1.0f), getRotation() * Quaternions::Y_180, getPosition());
|
||||||
const int NUM_DEBUG_COLORS = 7;
|
const int NUM_DEBUG_COLORS = 8;
|
||||||
const glm::vec4 DEBUG_COLORS[NUM_DEBUG_COLORS] = {
|
const glm::vec4 DEBUG_COLORS[NUM_DEBUG_COLORS] = {
|
||||||
glm::vec4(1.0f, 1.0f, 1.0f, 1.0f),
|
glm::vec4(1.0f, 1.0f, 1.0f, 1.0f),
|
||||||
glm::vec4(1.0f, 0.0f, 0.0f, 1.0f),
|
glm::vec4(1.0f, 0.0f, 0.0f, 1.0f),
|
||||||
|
|
Loading…
Reference in a new issue