Всем привет. Появилась такая проблема что не получается noteTile засунуть как дочерний объект в Journal на котором повешан скрипт.
public class Journal : MonoBehaviour
{
List<Note> noteList = new List<Note>();
[SerializeField] GameObject noteTile;
string noteName, noteDescription;
bool nul = true;
void Start ()
{
CheckNotes();
}
void CheckNotes ()
{
if (nul)
{
noteName = "note name";
noteDescription = "note description";
noteList.Add(new Note(noteName,noteDescription));
noteTile.name = noteName;
Instantiate(noteTile,gameObject);
}
}
}
class Note
{
public string name;
public string description;
public Note(string name, string description)
{
this.name = name;
this.description = description;
}
}