MagicaAreaWindAPI.cs 870 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Magica Cloth.
  2. // Copyright (c) MagicaSoft, 2020-2022.
  3. // https://magicasoft.jp
  4. namespace MagicaCloth
  5. {
  6. /// <summary>
  7. /// MagicaAreaWind API
  8. /// </summary>
  9. public partial class MagicaAreaWind : WindComponent
  10. {
  11. /// <summary>
  12. /// 風エリアの形状
  13. /// Wind area shape.
  14. /// </summary>
  15. public PhysicsManagerWindData.ShapeType ShapeType
  16. {
  17. get => shapeType;
  18. set
  19. {
  20. shapeType = value;
  21. status.SetDirty();
  22. }
  23. }
  24. /// <summary>
  25. /// 加算モード
  26. /// Addition mode.
  27. /// </summary>
  28. public bool Addition
  29. {
  30. get => isAddition;
  31. set
  32. {
  33. isAddition = value;
  34. status.SetDirty();
  35. }
  36. }
  37. }
  38. }