BoneAttachPos.cs 265 B

123456789101112131415161718
  1. using System;
  2. public class BoneAttachPos
  3. {
  4. public BoneAttachPos()
  5. {
  6. }
  7. public BoneAttachPos(BoneAttachPos bap)
  8. {
  9. this.bEnable = bap.bEnable;
  10. this.pss = new PosRotScale(bap.pss);
  11. }
  12. public bool bEnable;
  13. public PosRotScale pss = new PosRotScale();
  14. }