| 54 | public readonly exporter: ExporterSettings = new ExporterSettings(); |
| 55 | |
| 56 | public setSongBookModeSettings(): void { |
| 57 | this.notation.notationMode = NotationMode.SongBook; |
| 58 | this.notation.smallGraceTabNotes = false; |
| 59 | this.notation.fingeringMode = FingeringMode.SingleNoteEffectBand; |
| 60 | this.notation.extendBendArrowsOnTiedNotes = false; |
| 61 | this.notation.elements.set(NotationElement.ParenthesisOnTiedBends, false); |
| 62 | this.notation.elements.set(NotationElement.TabNotesOnTiedBends, false); |
| 63 | this.notation.elements.set(NotationElement.ZerosOnDiveWhammys, true); |
| 64 | } |
| 65 | |
| 66 | public static get songBook(): Settings { |
| 67 | const settings: Settings = new Settings(); |