ByChance.Levels3D.ChunkTemplate3D.AddAnchor C# (CSharp) Method

AddAnchor() private method

Adds the passed anchor to the list of anchors of this chunk template and sets its chunk-wide unique index.
private AddAnchor ( Anchor anchor ) : void
anchor ByChance.Core.Anchor Anchor to add to this template.
return void
        private void AddAnchor(Anchor anchor)
        {
            anchor.Index = this.AnchorCount;
            this.ChunkTemplateAnchors.Add(anchor);
        }

Same methods

ChunkTemplate3D::AddAnchor ( Vector3F relativePosition ) : void
ChunkTemplate3D::AddAnchor ( Vector3F relativePosition, string tag ) : void