MoveScoreboardSectionScoreEvent
Message
ts
type MoveScoreboardSectionScoreEvent = {
type: 'moveScoreboardSectionScore'
sectionIndex: number
fromIndex: number
toIndex: number
}Remarks
Upon receiving, client will:
- Raise a fatal error if section specified by
sectionIndexdoes not exist. - Raise a fatal error if score specified by
fromIndexdoes not exist. - Raise a fatal error if
toIndexis out of bound. - Move score specified by
sectionIndexandfromIndextotoIndex.