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