ایجاد دشمن تصادفی در یونیتی_ایجاد گیم ابجکت در موقعیت تصادفی یا رندم random در unity
شنبه, ۲۶ تیر ۱۳۹۵، ۱۱:۲۰ ق.ظ
gameover.blog.ir
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { public GameObject prefab; void Start() { Vector3 position = new Vector3(Random.Range(-10.0F, 10.0F), 0, Random.Range(-10.0F, 10.0F)); Instantiate(prefab, position, Quaternion.identity) as GameObject; } }
۹۵/۰۴/۲۶