- 44 名前:名前は開発中のものです。 mailto:sage [2017/01/13(金) 02:53:42.04 ID:tDrgUvk9.net]
- using UnityEngine;
using System.Collections; public class Test2 : MonoBehaviour { float timer; public GameObject a; void Update () { timer += Time.deltaTime; if (Mathf.Abs(3.05f - timer) < 1.192093E-07 ) { timer = 0; Instantiate(a, gameObject.transform.position, Quaternion.identity); } } } てどうだ
|

|