Revert "use * 2"

This reverts commit 9455c487551418ee75c8e8a07b410e6c4c35e283.
This commit is contained in:
JohnCorby 2023-08-06 22:53:24 -07:00
parent 9455c48755
commit 01b8ac0b7a

View File

@ -6,7 +6,7 @@ namespace NewHorizons.Builder.General
{
public static OWRigidbody Make(GameObject body, float sphereOfInfluence)
{
body.AddComponent<ProxyShadowCasterSuperGroup>()._bounds.radius = sphereOfInfluence * 2;
body.AddComponent<ProxyShadowCasterSuperGroup>()._bounds.radius = sphereOfInfluence;
Rigidbody rigidBody = body.AddComponent<Rigidbody>();
rigidBody.mass = 10000;