ByChance.Levels2D.ChunkTemplate2D.AddAnchor C# (CSharp) Метод

AddAnchor() приватный Метод

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.
Результат void
        private void AddAnchor(Anchor anchor)
        {
            anchor.Index = this.AnchorCount;
            this.ChunkTemplateAnchors.Add(anchor);
        }

Same methods

ChunkTemplate2D::AddAnchor ( Vector2F relativePosition, string tag ) : void