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

UpdateDerivedData() public method

public UpdateDerivedData ( bool synchronous, byte typeMask ) : void
synchronous bool
typeMask byte
return void
        public void UpdateDerivedData(bool synchronous, byte typeMask)
        {
            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.UpdateDerivedData(synchronous, typeMask);
            }
        }
        /// <summary>

Same methods

TerrainGroup::UpdateDerivedData ( ) : void
TerrainGroup::UpdateDerivedData ( bool synchronous ) : void