AR/getSoundBPM: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
{{New feature/item|3.0131|1.3.0|4145| | {{New feature/item|3.0131|1.3.0|4145| | ||
This function gets the beats per minute of a specific [[sound]] element. | This function gets the beats per minute of a specific [[sound]] element. | ||
{{Warning|This function is expensive to call and will freeze the client about 1-3 seconds. Also, trying to get the BPM from a sound directly after creation will not work. You need a | |||
[[setTimer]] to do this.}} | |||
}} | }} | ||
Revision as of 16:14, 1 May 2020
This function gets the beats per minute of a specific sound element.
تركيب الوظيفة
int getSoundBPM( element sound )
الفراغات المطلوبة
- sound: الصوت المحدد يمكنك استخدام الاصوات playSound او playSound3D
المعطيات
لعرض الاصوات في الدقيقة من الصوت المحدد
مثال
Click to collapse [-]
Clientfunction bpm () -- Long version (might be more understandable as example) sound = playSound ( "song.mp3" ) -- Play the song beats = getSoundBPM ( sound ) -- Get the beats per minute of the song outputChatBox ( "Long code version: " .. beats ) -- Output the beats to the chat box -- Short version + Would save some memory outputChatBox ( "Short code version: " .. getSoundBPM ( playSound ( "song.mp3" ) ) ) end addCommandHandler ( "bpm", bpm )
المتطلبات
This template will be deleted.
أنظر أيضاً
- getSoundBufferLength
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance