Reputation Activity
-
Chimotukikaari got a reaction from Charlie686 in Random crashWow Quite interesting to see that my Callout caused it. I will look in it
-
Chimotukikaari got a reaction from Luce.Benson in Vector3 List not workingIt works now thank you, well I guess I have to , because I am more used to C++/OOP😅Â
-
Chimotukikaari reacted to Cyan in Vector3 List not workingbecause you have defined a List object without creating it. You have made a reference to the list and defined it, but at no point have you created it.
private List<Vector3> Spawnpoint; // From private List<Vector3> Spawnpoint = new List<Vector3>(); // To I'm on mobile so forgive if there's a mistake. This is fundamental C#/OOP -- you may find it useful to work with a few C# tutorials before jumping into the deep end.