We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6726301 commit 4ad4b17Copy full SHA for 4ad4b17
1 file changed
TurnBase.KaNoBu.Godot/Presentation/WaveGenerator.cs
@@ -1,8 +1,8 @@
1
using Godot;
2
-using System.Collections.Generic;
3
-using System.Globalization;
4
5
-public class WaveGenerator : Node2D
+[Tool]
+[SceneReference("WaveGenerator.tscn")]
+public partial class WaveGenerator
6
{
7
[Export]
8
public Texture WaveItem;
@@ -24,6 +24,12 @@ public class WaveGenerator : Node2D
24
25
private float timeSinceLastWave = float.MinValue;
26
27
+ public override void _Ready()
28
+ {
29
+ base._Ready();
30
+ this.FillMembers();
31
+ }
32
+
33
public override async void _Process(float delta)
34
35
base._Process(delta);
0 commit comments