1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // Magica Cloth.
- // Copyright (c) MagicaSoft, 2020-2022.
- // https://magicasoft.jp
- namespace MagicaCloth
- {
- /// <summary>
- /// MagicaAreaWind API
- /// </summary>
- public partial class MagicaAreaWind : WindComponent
- {
- /// <summary>
- /// 風エリアの形状
- /// Wind area shape.
- /// </summary>
- public PhysicsManagerWindData.ShapeType ShapeType
- {
- get => shapeType;
- set
- {
- shapeType = value;
- status.SetDirty();
- }
- }
- /// <summary>
- /// 加算モード
- /// Addition mode.
- /// </summary>
- public bool Addition
- {
- get => isAddition;
- set
- {
- isAddition = value;
- status.SetDirty();
- }
- }
- }
- }
|