Fixed an issue where the triple shot spell could not be used.

修复三重射击法术无法使用的问题。
This commit is contained in:
Cold-Mint 2024-10-08 09:26:11 +08:00
parent feeb8261e3
commit 726e2b3d00
Signed by: Cold-Mint
GPG Key ID: C5A9BF8A98E0CE99
2 changed files with 2 additions and 2 deletions

View File

@ -36,6 +36,6 @@ ui_unordered_list_tip,排名不分先后,Ranking is not in order,順位は関係
ui_loading,正在加载...,Loading...,読み込み中...
ui_spell_editor,法术编辑器,Spell editor,スペルエディター
ui_tutorial_spellEditor,按E捡起地上的武器\n法杖需要搭配法术使用\n靠近工作台\n鼠标左键使用工作台。\n鼠标左键拖动物品\n以实现在不同的容器之间移动它们。,"Press E to pick up the weapon on the ground, \nthe wand needs to be used with the spell, \nclose to the workbench, \nthe left mouse button to use the workbench.\nDrag items with the left mouse button \nto move them between different containers.",Eを押して地面の武器を拾い上げます。\n杖は魔法と組み合わせて使います。\n作業台に近づいて、\nマウスの左ボタンで作業台を使います。\nマウスの左ボタンでモをドラッグすると、\nさまざまな容器の間を移動できます。
ui_tutorial_break_box,鼠标左键使用武器打破箱子->,"Use the left mouse button to break the box with the weapon->",マウスの左ボタンで箱を破ります->
ui_tutorial_break_box,鼠标左键使用武器打破箱子->,"Use the left mouse button to \nbreak the box with the weapon->",マウスの左ボタンで箱を破ります->
ui_tutorial_jump_onto_platform,W跳上平台\nS从平台上跳下。,"W jumps onto the platform, \nS jumps off the platform.",Wは踊り場に、\nSは踊り場に飛び降りるのです。
ui_tutorial_combine_more_powerful_spells,组合更强力的法术->,Combine more powerful spells->,より強力な術を組み合わせます->

1 id zh en ja
36 ui_loading 正在加载... Loading... 読み込み中...
37 ui_spell_editor 法术编辑器 Spell editor スペルエディター
38 ui_tutorial_spellEditor 按E捡起地上的武器,\n法杖需要搭配法术使用,\n靠近工作台,\n鼠标左键使用工作台。\n鼠标左键拖动物品,\n以实现在不同的容器之间移动它们。 Press E to pick up the weapon on the ground, \nthe wand needs to be used with the spell, \nclose to the workbench, \nthe left mouse button to use the workbench.\nDrag items with the left mouse button \nto move them between different containers. Eを押して地面の武器を拾い上げます。\n杖は魔法と組み合わせて使います。\n作業台に近づいて、\nマウスの左ボタンで作業台を使います。\nマウスの左ボタンでモノをドラッグすると、\nさまざまな容器の間を移動できます。
39 ui_tutorial_break_box 鼠标左键使用武器打破箱子-> Use the left mouse button to break the box with the weapon-> Use the left mouse button to \nbreak the box with the weapon-> マウスの左ボタンで箱を破ります->
40 ui_tutorial_jump_onto_platform W跳上平台,\nS从平台上跳下。 W jumps onto the platform, \nS jumps off the platform. Wは踊り場に、\nSは踊り場に飛び降りるのです。
41 ui_tutorial_combine_more_powerful_spells 组合更强力的法术-> Combine more powerful spells-> より強力な術を組み合わせます->

View File

@ -32,7 +32,7 @@ public partial class SpellPickAble : PickAbleTemplate, ISpell
public override void _Ready()
{
base._Ready();
if (_projectilePath != null)
if (!string.IsNullOrEmpty(_projectilePath))
{
_projectileScene = GD.Load<PackedScene>(_projectilePath);
}