コード例 #1
0
        // This copies all properties to another thing
        public void CopyPropertiesTo(Vertex v)
        {
            v.BeforePropsChange();

            // Copy properties
            v.pos = pos;
            base.CopyPropertiesTo(v);
        }
コード例 #2
0
ファイル: Vertex.cs プロジェクト: Xabis/GZDoom-Builder-Bugfix
        // This copies all properties to another thing
        public void CopyPropertiesTo(Vertex v)
        {
            v.BeforePropsChange();

            // Copy properties
            v.pos      = pos;
            v.zceiling = zceiling;         //mxd
            v.zfloor   = zfloor;           //mxd
            base.CopyPropertiesTo(v);
        }