Attract-Mode Support Forum
Attract-Mode Support => Scripting => Topic started by: Josepzin on September 11, 2017, 09:53:04 PM
-
Get duration o get time do not work, but playing or file_name yes.
Example:
local player_sound = fe.add_sound( "D:\\insertcoin.mp3" );
player_sound.playing = true; // or player_sound.playing = false; --> OK
::print( player_sound.file_name ); // --> ok
::print( player_sound.duration ); // --> 0
::print( player_sound.time ); // --> 0
Any suggest??
-
"Solved": player_sound.time );
When i start to play the sound (player_sound.playing = true;) i store the actual tick and then substract this value to the real tick :)
-
"Solved": player_sound.time );
When i play the sound (player_sound.playing = true;) i store the actual tick and then substract this value to the real tick :)
I couldn’t figure that shit out either. Good to know you figured out a work around.