0 votes

I'm making a zombie game and I wanted to make like a "spawn", which spawns the zombie every 10 seconds.

Godot version latest
in Engine by (24 points)

1 Answer

0 votes

Create one Zombie scene in editor and save it. It will be saved as .tscn file. So lets call it Zombie.tscn
You can access it from code by

var zombie =   preload("res://Zombie.tscn")

and create multiple clones of it by instance()for example

for x in range(10):
        var clone = zombie.instance()
        add_child(clone)
by (8,097 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.