Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extra measure doesn't display #65

Open
retorquere opened this issue Dec 3, 2023 · 0 comments
Open

Extra measure doesn't display #65

retorquere opened this issue Dec 3, 2023 · 0 comments

Comments

@retorquere
Copy link

When I add an extra measure, it doesn't show up in musescore:

image
import pydrumscore as pds

# Enter relevant metadata
metadata = pds.Metadata(
  workTitle = "BasicBeat"
)

# Measures of the song; fill this!
measures = []

# Add a measure
measures += pds.Measure(
  bd = [1,  3,  1,  3],
  sd = [2,  4,  2,  4],
  hh = pds.note_range(1, pds.end(), 1/2)  # Hi-hat from 1 to measure end, each lasting half a beat
)
measures += pds.Measure(
  bd = [1,  3,  1,  3 ],
  sd = [2,  4,  2,  4],
  hh = pds.note_range(1, pds.end(), 1/2)  # Hi-hat from 1 to measure end, each lasting half a beat
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant