Zeplin.Sound.Play C# (CSharp) Method

Play() public method

Plays this sound unless it is already playing.
public Play ( ) : void
return void
        public void Play()
        {
            throw new NotImplementedException();
            //if(instance == null || instance.State != SoundState.Playing)
                //instance = soundEffect.Play();
        }

Same methods

Sound::Play ( float volume, float pitch, float pan, bool loop ) : void