summaryrefslogtreecommitdiff
path: root/Bullet.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Bullet.cs')
-rw-r--r--Bullet.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bullet.cs b/Bullet.cs
index db44e2a..b131638 100644
--- a/Bullet.cs
+++ b/Bullet.cs
@@ -4,8 +4,8 @@ public partial class Bullet : Area2D
{
[Export] public float Speed { get; set; } = 600.0f;
[Export] public float Damage { get; set; } = 10.0f;
- [Export] public bool PierceEntity { get; set; } = false;
- [Export] public bool PierceTerrain { get; set; } = false;
+ public bool PierceEntity { get; set; } = false;
+ public bool PierceTerrain { get; set; } = false;
public Vector2 Direction { get; set; } = Vector2.Zero;
public override void _Ready()