Navigation
API > API/Plugins > API/Plugins/MusicEnvironment
| Name | FrameBasedMusicMap::EDottedQuantizationTicks |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/MusicEnvironment/Source/MusicEnvironment/Public/FrameBasedMusicMap.h |
| Include Path | #include "FrameBasedMusicMap.h" |
Syntax
namespace FrameBasedMusicMap
{
enum EDottedQuantizationTicks
{
DottedThirtysecondNote = (MusicalTime::TicksPerQuarterNote / 16) * 3,
DottedSixteenthNote = (MusicalTime::TicksPerQuarterNote / 8) * 3,
DottedEighthNote = (MusicalTime::TicksPerQuarterNote / 4) * 3,
DottedQuarterNote = (MusicalTime::TicksPerQuarterNote / 2) * 3,
DottedHalfNote = (MusicalTime::TicksPerQuarterNote) * 3,
DottedWholeNote = (MusicalTime::TicksPerQuarterNote) * 6,
}
}
Values
| Name | Remarks |
|---|---|
| DottedThirtysecondNote | |
| DottedSixteenthNote | |
| DottedEighthNote | |
| DottedQuarterNote | |
| DottedHalfNote | |
| DottedWholeNote |