Interface IHitObject

A hit object.

interface IHitObject {
    hitSound: HitSound;
    hitType: HitType;
    hitWindows: HitWindows;
    samples: HitSample[];
    startTime: number;
    clone(): IHitObject;
}

Hierarchy (view full)

Implemented by

Properties

hitSound: HitSound

Hit sound data of this hit object.

hitType: HitType

Hit type data of this hit object.

hitWindows: HitWindows

Hit windows of this hit object.

samples: HitSample[]

Samples of this hit object.

startTime: number

The time at which hit object starts.

Methods