Fuck nothing works

This commit is contained in:
juliuse98
2021-11-11 09:08:18 +01:00
parent ea8394bd16
commit 2f530971c0
28 changed files with 3198 additions and 305 deletions

View File

@@ -69,10 +69,10 @@ public class Headbob : NetworkBehaviour
}
}
private float getSin(float multiplier, float devisor,float x)
//check
private float getSin(float amplitude, float frequency,float x)
{
return multiplier * Mathf.Sin((x/3.14f) * 10 * devisor);
return amplitude * Mathf.Sin((x/3.14f) * 10 * frequency);
}
}