Search found 4 matches

by Feartheway
Sun Oct 03, 2021 5:25 pm
Forum: Code Examples
Topic: REQUEST EXAMPLES AND TUTORIALS HERE
Replies: 80
Views: 103161

Re: REQUEST EXAMPLES AND TUTORIALS HERE

How do I programmably check if Easy Save is available / enabled / included in a project for a function? or scene or project. i have made some code that saves to XML and also saves to BitFormat I want another option to use easy save if its available, if its not a available in the project then just to...
by Feartheway
Sun Oct 03, 2021 12:10 pm
Forum: Code Examples
Topic: REQUEST EXAMPLES AND TUTORIALS HERE
Replies: 80
Views: 103161

how do I check if ES3 is available?

Ok thanks for the heads up of where to find lists!

How Do i do a check if ES3 manager is loaded as an object in the scene?

eg

if (ES3ManagerLoaded)
{
ES3.Save("myList", myList);
myList = ES3.Load("myList", defaultValue);
}
by Feartheway
Sat Oct 02, 2021 10:29 pm
Forum: Code Examples
Topic: REQUEST EXAMPLES AND TUTORIALS HERE
Replies: 80
Views: 103161

Re: REQUEST EXAMPLES AND TUTORIALS HERE

OK regarding saving a high score table I found this but still not sure how to implement it into easy save
it uses a list for easy sorting.

https://gamedevbeginner.com/how-to-keep ... 5eUjIAUfg8
by Feartheway
Sat Oct 02, 2021 4:09 pm
Forum: Code Examples
Topic: REQUEST EXAMPLES AND TUTORIALS HERE
Replies: 80
Views: 103161

Simple top 10 high scores table

q1 How do I implement a simple top 10 scores table? q2 then how do i shuffle all the scores if someone adds a new score that is first or maybe fifth place? first place Player name, Score second Player name, Score third Player name, Score fourth Player name, Score fifth Player name, Score sixth Playe...