cirnogodot/Scripts/Resources/Modifiers/DelayedRotationModifier.cs

14 lines
276 B
C#
Raw Permalink Normal View History

2025-06-30 17:28:19 +02:00
using Cirno.Scripts.Weapons;
using Godot;
2025-02-14 16:18:33 +01:00
namespace Cirno.Scripts.Resources.Modifiers;
[GlobalClass]
[Tool]
2025-02-14 16:18:33 +01:00
public partial class DelayedRotationModifier : TimeModifier
{
2025-06-30 17:28:19 +02:00
public override void Start(IBullet bullet)
2025-02-14 16:18:33 +01:00
{
bullet.RotateBullet(this.Value);
}
}