How is this done? I would like to keep lots of them, not just 3. I think I found the AutoSave script, but it seems like it is tailored to only rotating 3. I would be fine with keeping all of them if there is way to remove the rotation feature.
 
Change:
Code:
private static readonly string[] m_Backups = new string[]
        {
            "Third Backup",
            "Second Backup",
            "Most Recent"
        };

For:
Code:
private static readonly string[] m_Backups = new string[]
        {
            "Fifth Backup",
            "Fourth Backup",
            "Third Backup",
            "Second Backup",
            "Most Recent"
        };

And so on.
I guess that way of handling the backups could be improved, but that should work.
 
Change:
Code:
private static readonly string[] m_Backups = new string[]
        {
            "Third Backup",
            "Second Backup",
            "Most Recent"
        };

For:
Code:
private static readonly string[] m_Backups = new string[]
        {
            "Fifth Backup",
            "Fourth Backup",
            "Third Backup",
            "Second Backup",
            "Most Recent"
        };

And so on.
I guess that way of handling the backups could be improved, but that should work.

Thank you.
 
Back