document: Blubber actor from TTC

This commit is contained in:
Bl00D4NGEL
2024-09-28 22:32:03 +02:00
parent 86b22d6d09
commit 1506d57893
21 changed files with 107 additions and 89 deletions

View File

@@ -2,13 +2,13 @@
#include "functions.h"
#include "variables.h"
s32 func_802E0970(s32 arg0, f32 arg1, f32 arg2, f32 arg3, s32 arg4, bool arg5, f32 arg6[3]) {
s32 func_802E0970(enum sfx_e sfxId, f32 arg1, f32 arg2, f32 arg3, s32 sampleRate, bool arg5, f32 position[3]) {
f32 temp_f0;
f32 phi_f2;
phi_f2 = (arg5) ? arg1 : arg2;
temp_f0 = arg3 * 0.5;
func_8030E878(arg0, randf2(phi_f2 - temp_f0, phi_f2 + temp_f0), arg4, arg6, 1000.0f, 2300.0f);
func_8030E878(sfxId, randf2(phi_f2 - temp_f0, phi_f2 + temp_f0), sampleRate, position, 1000.0f, 2300.0f);
return NOT(arg5);
}