Hi guys,
So I am currently trying to get a plane to spawn into my game after 10 seconds, I am unsure how to write this in the actor and also whether it has to be written in the world.
Could someone please advise?
private int timer = 0;
public void act()
{
timer++;
if (timer==550)
{
addObject(new Plane(), 100, 200); //change coordinates
}
}