Search found 35 matches

by jinxology
Tue May 26, 2015 11:13 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Writer/Reader with character list
Replies: 12
Views: 9879

Re: ES2Writer/Reader with character list

Ok, adding to this. I went and created a class in C#, placed it in the Plugins folder, and the missing class error has gone away. Hoping that solves all my issues. Based on your earlier email, are you suggesting that I can now save an Array of Character objects since I have now added support for tha...
by jinxology
Tue May 26, 2015 11:00 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Writer/Reader with character list
Replies: 12
Views: 9879

Re: ES2Writer/Reader with character list

I would love to support the type, but when I use the tool at Assets > Easy Save 2 > Manage Types... Choose "Character" check all the boxes, I get this error on compile: Assets/Easy Save 2/Types/ES2UserType_Character.cs(49,52): error CS0246: The type or namespace name `Character' could not ...
by jinxology
Tue May 26, 2015 7:26 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: ES2Writer/Reader with character list
Replies: 12
Views: 9879

ES2Writer/Reader with character list

Greetings, My game allows the player to create several characters, but I'm not sure the best approach here. I looked into ES2Writer, and that functionality seems to be working in the Web Player. How should I structure the save though? Should each character be a separate "text file"? Is the...
by jinxology
Sat Sep 13, 2014 5:32 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Need some help with basic Load
Replies: 2
Views: 2759

Re: Need some help with basic Load

Dur, thanks Joel. Just realizing now that this example code is in C#.
by jinxology
Sat Sep 13, 2014 5:22 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Need some help with basic Load
Replies: 2
Views: 2759

Need some help with basic Load

Having some issues with the basic Load. ES2.Save (campIndex, "campIndex"); //compiles fine campIndex = ES2.Load<int>("campIndex"); //throws the error below (all my loads do) Cannot infer generic arguments for method 'ES2.Load.<T>(String, ES2Settings)'. Provide stronger type infor...