diff --git a/components/Bullets/VectorStar.tscn b/components/Bullets/VectorStar.tscn index 711f882..9a6a0b0 100644 --- a/components/Bullets/VectorStar.tscn +++ b/components/Bullets/VectorStar.tscn @@ -43,7 +43,7 @@ alpha_curve = SubResource("CurveTexture_c22if") [node name="VectorStar" instance=ExtResource("1_fyvdf")] script = ExtResource("2_1u5ed") -lifeDistance = 3000.0 +lifeDistance = 2000.0 [node name="texture" parent="." index="0"] rotation = 0.0174533 diff --git a/scripts/Contents/Bullets/VectorStar.gd b/scripts/Contents/Bullets/VectorStar.gd index 5320a51..fa61620 100644 --- a/scripts/Contents/Bullets/VectorStar.gd +++ b/scripts/Contents/Bullets/VectorStar.gd @@ -11,7 +11,7 @@ func ai(): if timeLived() <= forwardTime: speed = 10 * ((forwardTime - timeLived()) / forwardTime) elif forwarded: - speed = (timeLived() - forwardTime) / 20 + speed = (timeLived() - forwardTime) / 30 else: forwarded = true if is_instance_valid(tracer):