Attract-Mode Support Forum

Attract-Mode Support => Scripting => Topic started by: Josepzin on September 11, 2017, 09:53:04 PM

Title: sound.duration do not work?
Post 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:
Code: [Select]
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??
Title: Re: sound.duration do not work?
Post by: Josepzin on September 12, 2017, 11:48:54 AM
"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 :)
Title: Re: sound.duration do not work?
Post by: keilmillerjr on September 12, 2017, 01:17:46 PM
"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.