Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Make beam more narrow #2985

Merged
merged 1 commit into from
Mar 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/cpp/ControllerContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ControllerContainer::InitializeBeam() {
CreationContextPtr create = m.context.lock();
VertexArrayPtr array = VertexArray::Create(create);
const float kLength = -1.0f;
const float kHeight = 0.004f;
const float kHeight = 0.002f;

array->AppendVertex(Vector(-kHeight, -kHeight, 0.0f)); // Bottom left
array->AppendVertex(Vector(kHeight, -kHeight, 0.0f)); // Bottom right
Expand Down