BrashMonkey.Spriter.Data.ObjectModel.SpriterData.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
        public void Reset()
        {
            this.atlases.Clear();

            this.characterMap.ID = 0;
            this.characterMap.maps.Clear();
            this.characterMap.name = "";

            this.documentInfo.author = "author not specified";
            this.documentInfo.copyright = "copyright info not specified";
            this.documentInfo.lastModified = "date and time not included";
            this.documentInfo.license = "no license specified";
            this.documentInfo.notes = "no additional notes";
            this.documentInfo.version = "version not specified";

            this.entity.animations.Clear();
            this.entity.ID = 0;
            this.entity.metaData.Clear();
            this.entity.name = "";

            this.files.Clear();

            this.metaData.Clear();

            this.versionInfo.generator = SpriterDataVersionInfo.generator;
            this.versionInfo.generatorVersion = SpriterDataVersionInfo.generatorVersion;
            this.versionInfo.pixelArtMode = false;
            this.versionInfo.pixelArtModeRaw = "false";
            this.versionInfo.version = "";
        }