Version: 5.4
public void Invoke (string methodName, float time);

Descripción

Invoca el método methodName en tiempo de segundos.

using UnityEngine;
using System.Collections.Generic;

public class ExampleScript : MonoBehaviour {

// Launches a projectile in 2 seconds

Rigidbody projectile;

void Start() { Invoke("LaunchProjectile", 2); } void LaunchProjectile () { Rigidbody instance = Instantiate(projectile); instance.velocity = Random.insideUnitSphere * 5; }

}