VtxAttachPos.cs 359 B

123456789101112131415161718192021222324
  1. using System;
  2. public class VtxAttachPos
  3. {
  4. public VtxAttachPos()
  5. {
  6. }
  7. public VtxAttachPos(VtxAttachPos vap)
  8. {
  9. this.bEnable = vap.bEnable;
  10. this.vtxcount = vap.vtxcount;
  11. this.vidx = vap.vidx;
  12. this.prs = new PosRotScale(vap.prs);
  13. }
  14. public bool bEnable;
  15. public int vtxcount;
  16. public int vidx;
  17. public PosRotScale prs = new PosRotScale();
  18. }