unity make a int arry with preset values
// For a preset arry in c#
var arr = new string[3] {"one", "two", "three"};
// Or you can do this:
string[] arr = {"one", "two", "three"};
unity make a int arry with preset values
// For a preset arry in c#
var arr = new string[3] {"one", "two", "three"};
// Or you can do this:
string[] arr = {"one", "two", "three"};
array in c# unity
using UnityEngine;
using System.Collections;
public class Arrays : MonoBehaviour
{
public GameObject[] players;
void Start ()
{
players = GameObject.FindGameObjectsWithTag("Player");
for(int i = 0; i < players.Length; i++)
{
Debug.Log("Player Number "+i+" is named "+players[i].name);
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us