Initial, scripts

This commit is contained in:
nothke
2024-10-15 01:25:22 +02:00
parent ab07d94b74
commit 42891195fd
6 changed files with 730 additions and 0 deletions

12
scripts/ParticlesTest.cs Normal file
View File

@@ -0,0 +1,12 @@
using Godot;
using System;
public class ParticlesTest : Particles
{
public override void _Process(float delta)
{
float time = OS.GetTicksMsec() / 1000.0f;
Emitting = Mathf.Sin(time * 20) > 0;
}
}