“Untiy Instanciate Prefab” Ответ

Untiy Instanciate Prefab

Instantiate(prefab, new Vector3(i * 2.0F, 0, 0), Quaternion.identity);
Real Ray

Untiy Instanciate Prefab


using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class InstantiateObjectExample : MonoBehaviour
{
    public GameObject objectToInstantiate;

    private GameObject instantiatedObject;

    private void Awake()
    {
        CreateInstanceOfObject();
    }

    private void CreateInstanceOfObject()
    {
        instantiatedObject = Instantiate(objectToInstantiate, transform.position, Quaternion.identity);

        instantiatedObject.transform.localScale = new Vector3(2f, 2f, 1f);
    }
}

Nice Nightingale

Ответы похожие на “Untiy Instanciate Prefab”

Вопросы похожие на “Untiy Instanciate Prefab”

Смотреть популярные ответы по языку

Смотреть другие языки программирования