add more NotePreset properties

This commit is contained in:
MihailRis
2024-11-14 02:21:15 +03:00
parent 78d5ab02c2
commit 5b6ada6e5d
8 changed files with 74 additions and 18 deletions
+9 -1
View File
@@ -125,7 +125,7 @@ void Batch3D::sprite(
float h,
int atlasRes,
int index,
glm::vec4 tint
const glm::vec4& tint
) {
float scale = 1.0f / static_cast<float>(atlasRes);
float u = (index % atlasRes) * scale;
@@ -288,3 +288,11 @@ void Batch3D::flushPoints() {
mesh->draw(GL_POINTS);
index = 0;
}
void Batch3D::setColor(const glm::vec4& color) {
tint = color;
}
const glm::vec4& Batch3D::getColor() const {
return tint;
}