Version: 2018.4
public static float time ;

説明

このフレームの開始する時間(Read Only)。ゲーム開始からの時間(秒)です。

Returns the same value if called multiple times in a single frame. When called from inside MonoBehaviour's FixedUpdate, returns fixedTime property. Try to avoid regular (frame) use of Time.time. It is more intended to supply the time the game has been running, and not time per frame.

Note: Time.time starts once all Awake functions have finished. The time value will be undefined during Awake functions.

using UnityEngine;
using System.Collections;

// Instantiates a projectile off every 0.5 seconds, // if the Fire1 button (default is ctrl) is pressed.

public class ExampleScript : MonoBehaviour { public GameObject projectile; public float fireRate = 0.5f; private float nextFire = 0.0f;

void Update() { if (Input.GetButton("Fire1") && Time.time > nextFire) { nextFire = Time.time + fireRate; GameObject clone = Instantiate(projectile, transform.position, transform.rotation) as GameObject; } } }