-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
csファイルの改行コードをlfに変更 シーン内でノードの参照を行うとエクスポート時に参照が失われる場合がったため、できるだけ参照を行わないように変更した v1.2.2
- Loading branch information
SHIRAISHI
authored and
SHIRAISHI
committed
Nov 10, 2024
1 parent
cbe0001
commit 7de9d77
Showing
57 changed files
with
485 additions
and
557 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*.cs text eol=crlf diff=csharp | ||
*.cs text eol=lf diff=csharp | ||
|
||
*.import text eol=lf | ||
*.tscn text eol=lf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"profiles": { | ||
"godot debug": { | ||
"commandName": "Executable", | ||
"executablePath": "C:\\Programs\\Godot_v4.3-stable_mono_win64\\Godot_v4.3-stable_mono_win64.exe", | ||
"commandLineArgs": "-path --verbose", | ||
"workingDirectory": ".", | ||
"nativeDebugging": false | ||
} | ||
"godot debug": { | ||
"commandName": "Executable", | ||
"executablePath": "C:\\Programs\\Godot_v4.3-stable_mono_win64\\Godot_v4.3-stable_mono_win64.exe", | ||
"commandLineArgs": "-path --verbose", | ||
"workingDirectory": ".", | ||
"nativeDebugging": false | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using Godot; | ||
using tmfos.player; | ||
using tmfos.trigger; | ||
|
||
namespace tmfos.door; | ||
|
||
/// <summary> | ||
/// ステージ間移動の出入り口 | ||
/// </summary> | ||
public partial class Warp : Gateway | ||
{ | ||
public void EnableWarp(Area2D node) | ||
{ | ||
if (node is EventFinder finder && finder.EventNode2D is Player) | ||
{ | ||
Disable = false; | ||
} | ||
} | ||
|
||
internal void DisableWarp() | ||
{ | ||
Disable = true; | ||
_ = Connect(Area2D.SignalName.AreaExited, new Callable(this, MethodName.EnableWarp)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace tmfos.enemy; | ||
|
||
/// <summary> | ||
/// 竜の頭敵 | ||
/// </summary> | ||
public partial class DragonHeadEnemy : PathFollowEnemy | ||
{ | ||
public override void Damaged() | ||
{ | ||
|
||
base.Damaged(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.