Revise.Files.IFO.MapDataFile.Reset C# (CSharp) Method

Reset() public method

Resets properties to their default values.
public Reset ( ) : void
return void
        public override void Reset()
        {
            base.Reset();

            WaterPatches = new MapWaterPatches();
            MapPosition = new IntVector2();
            ZonePosition = new IntVector2();
            World = Matrix4x4.identity;
            Name = string.Empty;
            WaterSize = 2000.0f;

            Clear();
        }