chore: remove colors from Gizmo

This commit is contained in:
Nick Fisher
2024-12-17 14:07:29 +08:00
parent eb4e70a7cf
commit fc4842ed6d
2 changed files with 20 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
#include "math.h"
namespace thermion {
using namespace filament;
constexpr math::float3 AXIS_COLORS[3] {
math::float3{1.0f, 0.0f, 0.0f}, // X
math::float3{0.0f, 1.0f, 0.0f}, // Y
math::float3{0.0f, 0.0f, 1.0f}, // Z
};
}