Interface: PixiVNJsonSoundEditProps
Defined in: src/schema/PixiVNJsonSound.ts:56
Partial set of sound properties that can be applied when editing a currently playing sound.
Extends
Partial<Pick<MediaInterface,"speed"|"muted"|"loop"|"paused">>.Partial<Pick<SoundPlayOptionsWithChannel,"volume">>
Properties
loop?
> optional loop?: boolean
Defined in: node_modules/tone/build/esm/source/buffer/Player.d.ts:163
Inherited from
Partial.loop
muted?
> optional muted?: boolean
Defined in: node_modules/@drincs/pixi-vn/dist/SoundManagerInterface-Dd0b88_N.d.ts:11
Deprecated
Use mute instead.
Inherited from
paused?
> optional paused?: boolean
Defined in: node_modules/@drincs/pixi-vn/dist/SoundManagerInterface-Dd0b88_N.d.ts:7
Whether the sound is currently paused.
Inherited from
speed?
> optional speed?: number
Defined in: node_modules/@drincs/pixi-vn/dist/SoundManagerInterface-Dd0b88_N.d.ts:15
Deprecated
Use playbackRate instead.
Inherited from
volume?
> optional volume?: number
Defined in: node_modules/@drincs/pixi-vn/dist/SoundManagerInterface-Dd0b88_N.d.ts:35
The volume of this sound in the linear range [0, 1], where 0 is silence and 1 is full volume. This is converted to decibels internally before being passed to the Tone.js Player.