Skip to content

Commit

Permalink
Merge pull request #69 from InvalidArgument3/roidnetworking-narrowing…
Browse files Browse the repository at this point in the history
…downthecause

bigger astreoid hitbox
  • Loading branch information
InvalidArgument3 authored Jun 18, 2024
2 parents 7db3648 + 2f190eb commit f296f1b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,8 @@ public bool DoDamage(float damage, MyStringHash damageSource, bool sync, MyHitIn
private void CreatePhysics()
{
float mass = 10000 * Size * Size * Size;
float radius = Size / 2; // Assuming Size represents the diameter
//float radius = Size / 2; // Assuming Size represents the diameter
float radius = Size; // Assuming Size represents the diameter

PhysicsSettings settings = MyAPIGateway.Physics.CreateSettingsForPhysics(
this,
Expand Down

0 comments on commit f296f1b

Please sign in to comment.