Axiom.Components.Terrain.TerrainGroup.Update C# (CSharp) Method

Update() public method

Trigger the update process for all terrain instances.
public Update ( bool synchronous ) : void
synchronous bool
return void
        public void Update(bool synchronous)
        {
            if (!synchronous)
            {
                throw new NotImplementedException("Loading the Terrain asynchronous is not yet possible!");
            }
            foreach (TerrainSlot i in _terrainSlots.Values)
            {
                if (i.Instance != null)
                    i.Instance.Update(synchronous);
            }
        }
        /// <summary>

Same methods

TerrainGroup::Update ( ) : void