Zeplin.Sound.PlayWithoutChecking C# (CSharp) Method

PlayWithoutChecking() public method

Plays this sound even if it is already playing.
A sound played in this way cannot be paused or stopped or otherwise manipulated.
public PlayWithoutChecking ( ) : void
return void
        public void PlayWithoutChecking()
        {
            soundEffect.Play();
        }