You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that mx::api::NoteData currently has two tie-related surfaces:
NoteData::isTieStart / isTieStop
These write the sound-level <tie type="start|stop">.
They also appear to write a notation-level <tied type="start|stop">.
However, the bool path has no place to attach notation attributes such as orientation, placement, bezier data, etc.
NoteData::noteAttachmentData.curveStarts / curveStops with CurveType::tie
These can carry notation attributes through CurveStart / CurveStop, including curveOrientation.
But these write only <notations><tied ...>, not the sound-level <tie>.
If used together with isTieStart, it looks like this would emit duplicate <tied type="start"> elements.
Is there an intended way in mx::api to express a regular sounding tie whose notation-level <tied> also needs attributes such as orientation="over| under"?
For example, I would like to emit something conceptually like:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I see that
mx::api::NoteDatacurrently has two tie-related surfaces:NoteData::isTieStart/isTieStop<tie type="start|stop">.<tied type="start|stop">.orientation, placement, bezier data, etc.NoteData::noteAttachmentData.curveStarts/curveStopswithCurveType::tieCurveStart/CurveStop, includingcurveOrientation.<notations><tied ...>, not the sound-level<tie>.isTieStart, it looks like this would emit duplicate<tied type="start">elements.Is there an intended way in
mx::apito express a regular sounding tie whose notation-level<tied>also needs attributes such asorientation="over| under"?For example, I would like to emit something conceptually like:
without producing duplicate
<tied type="start">elements.Beta Was this translation helpful? Give feedback.
All reactions