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
+5 -1
View File
@@ -17,6 +17,7 @@ class Batch3D : public Flushable {
std::unique_ptr<Mesh> mesh;
std::unique_ptr<Texture> blank;
size_t index;
glm::vec4 tint {1.0f};
const Texture* currentTexture;
@@ -65,7 +66,7 @@ public:
float h,
int atlasRes,
int index,
glm::vec4 tint
const glm::vec4& tint
);
void xSprite(
float w,
@@ -91,4 +92,7 @@ public:
void point(const glm::vec3& pos, const glm::vec4& tint);
void flush() override;
void flushPoints();
void setColor(const glm::vec4& color);
const glm::vec4& getColor() const;
};