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

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

Constructs a new anchor with the same index and relative position as the passed one and attaches it to the specified chunk.
private Anchor2D ( Anchor2D template, Chunk source ) : ByChance.Core
template Anchor2D Anchor whose attributes to copy.
source ByChance.Core.Chunk Chunk to attach the new anchor to.
Результат ByChance.Core
        internal Anchor2D(Anchor2D template, Chunk source)
            : base(template.Tag)
        {
            this.Index = template.Index;
            this.Source = source;
            this.RelativePosition = template.RelativePosition;
        }

Same methods

Anchor2D::Anchor2D ( Vector2F relativePosition, string tag ) : ByChance.Core
Anchor2D