Sound.Loop Property

SFML.Net

SoundLoop Property
Flag if the sound should loop after reaching the end. If set, the sound will restart from beginning after reaching the end and so on, until it is stopped or Loop = false is set. The default looping state for sounds is false.

Namespace: SFML.Audio
Assembly: sfmlnet-audio-2 (in sfmlnet-audio-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public bool Loop { get; set; }
Public Property Loop As Boolean
	Get
	Set
public:
property bool Loop {
	bool get ();
	void set (bool value);
}
member Loop : bool with get, set

Property Value

Type: Boolean
See Also