OpenSim.Region.Framework.Scenes.SceneObjectPart.SetAttachmentPoint C# (CSharp) 메소드

SetAttachmentPoint() 공개 메소드

public SetAttachmentPoint ( uint AttachmentPoint ) : void
AttachmentPoint uint
리턴 void
        public void SetAttachmentPoint(uint AttachmentPoint)
        {
            this.AttachmentPoint = AttachmentPoint;

            if (AttachmentPoint != 0)
            {
                IsAttachment = true;
            }
            else
            {
                IsAttachment = false;
            }

            // save the attachment point.
            //if (AttachmentPoint != 0)
            //{
                m_shape.State = (byte)AttachmentPoint;
            //}
        }
SceneObjectPart