From ffe6bce8091180fa213da90b5918097b672db023 Mon Sep 17 00:00:00 2001 From: Jeremy HU Date: Fri, 9 Dec 2022 21:00:13 +1100 Subject: [PATCH] Update seven colors --- dust3d/rig/bone_generator.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dust3d/rig/bone_generator.cc b/dust3d/rig/bone_generator.cc index 7eaa0d1a..db389aac 100644 --- a/dust3d/rig/bone_generator.cc +++ b/dust3d/rig/bone_generator.cc @@ -190,13 +190,13 @@ void BoneGenerator::addBonePreviewTriangle(BonePreview& bonePreview, void BoneGenerator::generateBonePreviews() { const static std::array s_colors = { - Color(155.0 / 255.0, 95.0 / 255.0, 224.0 / 255.0), - Color(22.0 / 255.0, 164.0 / 255.0, 216.0 / 255.0), - Color(96.0 / 255.0, 219.0 / 255.0, 232.0 / 255.0), - Color(139.0 / 255.0, 211.0 / 255.0, 70.0 / 255.0), - Color(239.0 / 255.0, 223.0 / 255.0, 72.0 / 255.0), - Color(249.0 / 255.0, 165.0 / 255.0, 44.0 / 255.0), - Color(214.0 / 255.0, 78.0 / 255.0, 18.0 / 255.0), + Color(255.0 / 255.0, 0.0 / 255.0, 0.0 / 255.0), + Color(255.0 / 255.0, 128.0 / 255.0, 216.0 / 64.0), + Color(255.0 / 255.0, 255.0 / 255.0, 0.0 / 255.0), + Color(0.0 / 255.0, 255.0 / 255.0, 0.0 / 255.0), + Color(0.0 / 255.0, 128.0 / 255.0, 255.0 / 255.0), + Color(0.0 / 255.0, 0.0 / 255.0, 44.0 / 128.0), + Color(128.0 / 255.0, 0.0 / 255.0, 128.0 / 255.0), }; for (const auto& it : m_boneVertices) {