From 9ac2261557efc9141c549458cee82f49b18b8d29 Mon Sep 17 00:00:00 2001 From: erwincoumans Date: Tue, 9 Jul 2019 08:42:52 -0700 Subject: [PATCH] Update PhysicsServerCommandProcessor.cpp set alpha default to 1, just in case. --- examples/SharedMemory/PhysicsServerCommandProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/SharedMemory/PhysicsServerCommandProcessor.cpp b/examples/SharedMemory/PhysicsServerCommandProcessor.cpp index 1983b5b13..11244228b 100644 --- a/examples/SharedMemory/PhysicsServerCommandProcessor.cpp +++ b/examples/SharedMemory/PhysicsServerCommandProcessor.cpp @@ -7474,7 +7474,7 @@ bool PhysicsServerCommandProcessor::processLoadSoftBodyCommand(const struct Shar visualShape.m_rgbaColor[0] = 0; visualShape.m_rgbaColor[1] = 0; visualShape.m_rgbaColor[2] = 0; - visualShape.m_rgbaColor[3] = 0; + visualShape.m_rgbaColor[3] = 1; visualShape.m_tinyRendererTextureId = -1; visualShape.m_textureUniqueId =-1; visualShape.m_openglTextureId = -1;