Hi
Does Anybody knows how i could play a sound that is not in the machine simulator library sound?
Thanks in advance.
Very easy, use the function PlayExternalSound().
For instance add a Static Element and name it Stat, then use the same script code as listed here:
public void Init()
{
}
public void Main()
{
if(IOManager.TrigOutUp(0))
Stat.PlayExternalSound("D:\\Temp\\chord.wav");
}
public void Physics()
{
}
public void Finish()
{
}
Thank you so much. :)