Allow setting and getting beat bar status per NoteField from Lua

This commit is contained in:
tertu marybig
2024-02-15 13:22:26 -08:00
committed by teejusb
parent c4d63052e2
commit acf8be530d
3 changed files with 46 additions and 9 deletions
+5
View File
@@ -67,6 +67,9 @@ public:
// public so that the Lua API can access it. -Kyz
std::vector<NoteColumnRenderer> m_ColumnRenderers;
void SetBeatBars(bool active);
bool GetBeatBars();
protected:
void CacheNoteSkin( const RString &sNoteSkin );
void UncacheNoteSkin( const RString &sNoteSkin );
@@ -126,6 +129,8 @@ protected:
BitmapText m_textMeasureNumber;
Quad m_rectMarkerBar;
Quad m_rectAreaHighlight;
bool m_bShowBeatBars;
};
#endif