コード例 #1
0
ファイル: TextureReference.cs プロジェクト: juanjp600/cbre
 public TextureReference Clone()
 {
     return(new TextureReference {
         Name = Name,
         Texture = Texture,
         Rotation = Rotation,
         UAxis = UAxis.Clone(),
         VAxis = VAxis.Clone(),
         XShift = XShift,
         XScale = XScale,
         YShift = YShift,
         YScale = YScale
     });
 }
コード例 #2
0
 public TextureReference Clone()
 {
     return(new TextureReference
     {
         Name = Name,
         Texture = Texture,
         Rotation = Rotation,
         UAxis = UAxis.Clone(),
         VAxis = VAxis.Clone(),
         XShift = XShift,
         XScale = XScale,
         YShift = YShift,
         YScale = YScale,
         Flags = Flags,
         Translucency = Translucency,
         Opacity = Opacity,
         TransformAngleRF = TransformAngleRF,
         PositionRF = PositionRF
     });
 }