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

DefineTerrain() public method

Define a 'slot' in the terrain grid - in this case to be loaded from a generated file name.
public DefineTerrain ( long x, long y ) : void
x long The coordinates of the terrain slot relative to the centre slot (signed).
y long The coordinates of the terrain slot relative to the centre slot (signed).
return void
        public void DefineTerrain(long x, long y)
        {
            DefineTerrain(x, y, GenerateFilename(x, y));
        }
        /// <summary>

Same methods

TerrainGroup::DefineTerrain ( long x, long y, Image image ) : void
TerrainGroup::DefineTerrain ( long x, long y, Image image, List layers ) : void
TerrainGroup::DefineTerrain ( long x, long y, ImportData importData ) : void
TerrainGroup::DefineTerrain ( long x, long y, float constantHeight ) : void
TerrainGroup::DefineTerrain ( long x, long y, float data, List layers ) : void
TerrainGroup::DefineTerrain ( long x, long y, string filename ) : void