Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
using System.Numerics;
|
|
using Raylib_cs;
|
|
|
|
namespace Smoll.Ex2 {
|
|
class TimeToLiveComponent : Smoll.Component {
|
|
float secondsToLive;
|
|
float lived = 0f;
|
|
|
|
public TimeToLiveComponent(float secondsToLive)
|
|
{
|
|
this.secondsToLive = secondsToLive;
|
|
}
|
|
|
|
public override void Update(float deltaTimeSeconds)
|
|
{
|
|
lived += deltaTimeSeconds;
|
|
if(lived > secondsToLive) owner.mustDelete = true;
|
|
}
|
|
|
|
public override void Draw(Smoll.Layer.DrawMode drawMode) {
|
|
if(drawMode == Layer.DrawMode.Debug) {
|
|
}
|
|
}
|
|
}
|
|
}
|