一、性能
1.模式
public enum Mode
{
/// <summary>
/// 領域を持たない全体に影響する風
/// Wind that affects the whole without area.
/// </summary>
GlobalDirection = 0,
/// <summary>
/// 球型の領域を持つ方向風
/// Directional wind with spherical area.
/// </summary>
SphereDirection = 1,
/// <summary>
/// ボックス型の領域を持つ方向風
/// </summary>
BoxDirection = 2,
/// <summary>
/// 球型の領域を持つ放射風
/// Directional wind with box area.
/// </summary>
SphereRadial = 10,
}
/// <summary>
/// Zone mode.
/// [OK] Runtime changes.
/// </summary>
public Mode mode = Mode.GlobalDirection;
大小