ByChance.Levels3D.Anchor3D.Anchor3D C# (CSharp) Метод

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

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

Same methods

Anchor3D::Anchor3D ( Vector3F relativePosition, string tag ) : ByChance.Core
Anchor3D