FSO.Vitaboy.Bone.Clone C# (CSharp) Метод

Clone() публичный Метод

Clones this bone.
public Clone ( ) : Bone
Результат Bone
        public Bone Clone()
        {
            var result = new Bone
            {
                Unknown = this.Unknown,
                Name = this.Name,
                ParentName = this.ParentName,
                HasProps = this.HasProps,
                Properties = this.Properties,
                Translation = this.Translation,
                Rotation = this.Rotation,
                CanTranslate = this.CanTranslate,
                CanRotate = this.CanRotate,
                CanBlend = this.CanBlend,
                WiggleValue = this.WiggleValue,
                WigglePower = this.WigglePower,
                Index = this.Index
            };
            return result;
        }
Bone