templates

This commit is contained in:
Rendo 2025-07-16 18:19:25 +05:00
commit d52d4be5ff
7 changed files with 421 additions and 60 deletions

View file

@ -5,9 +5,10 @@ using Godot.Collections;
[Tool]
public partial class AdventureLevelResource : Resource
{
[Export] public float startSun;
[Export] public float startSun = 50;
//[Export] public Array<Conditions> conditions;
[Export(PropertyHint.Range,"0,1,0.01")] public float wavePercentage;
[Export] public float standardWaveDelay;
[Export] public float initialWaveDelay;
[Export] public Array<WaveData> waves;
}