Search found 1 match

by sunnybecks
Wed Oct 13, 2021 6:42 pm
Forum: General Discussion
Topic: Array with Bools
Replies: 1
Views: 583

Array with Bools

Hi, i am new with using ES3. i want to save and load an array of bools, but it seems not to work. public void SaveAllCoins() { for (int i = 0; i < Coin.Length; i++) { ES3.Save("Coin", Coin[i]); } } public void LoadAllCoins() { for (int i = 0; i < Coin.Length; i++) { Coin[i] = ES3.Load<bool...