Traveller/scripts/spell/NodeSpawnOnKillCharacterSpell.cs
Cold-Mint 291ef653f0
Added wooden boxes and tutorial levels.
加入木箱子和教程关卡。
2024-10-07 23:29:08 +08:00

37 lines
1.1 KiB
C#

using ColdMint.scripts.projectile;
using ColdMint.scripts.projectile.decorator;
using Godot;
namespace ColdMint.scripts.spell;
/// <summary>
/// <para>Generate a set node spell after killing the character</para>
/// <para>杀死角色后生成制定节点法术</para>
/// </summary>
public partial class NodeSpawnOnKillCharacterSpell : SpellPickAble
{
[Export]
private string? _packedScenePath;
private NodeSpawnOnKillCharacterDecorator? _nodeSpawnOnKillCharacterDecorator;
public override void _Ready()
{
base._Ready();
if (!string.IsNullOrEmpty(_packedScenePath))
{
_nodeSpawnOnKillCharacterDecorator = new NodeSpawnOnKillCharacterDecorator
{
PackedScenePath = _packedScenePath,
DefaultParentNode = this
};
}
}
public override void ModifyProjectile(int index, Projectile projectile, ref Vector2 velocity)
{
if (_nodeSpawnOnKillCharacterDecorator == null)
{
return;
}
projectile.AddProjectileDecorator(_nodeSpawnOnKillCharacterDecorator);
}
}