Contents
Properties
refreshMode
public enum RefreshMode
{
/// <summary>
/// コンポーネントのAwake()で1度だけ送信する
/// Send once at the component's Awake()
/// </summary>
OnAwake = 0,
/// <summary>
/// 毎フレーム内容を送信する
/// Send content every frame.
/// </summary>
EveryFrame = 1,
/// <summary>
/// コンポーネントのStart()で一度だけ送信する
/// Send once at the component's Start().
/// </summary>
OnStart = 2,
/// <summary>
/// コンポーネントは何もしません。送信には手動でRefresh()を呼ぶ必要があります
/// The component does nothing. You must manually call Refresh() to submit.
/// </summary>
Manual = 3,
}
/// <summary>
/// コンポーネントの内容をマネージャに送信する方法
/// How to send the contents of a component to the manager.
/// Refresh mode
/// </summary>
public RefreshMode refreshMode = RefreshMode.OnAwake;
simulationFrequency
/// <summary>
/// シミュレーション周波数(30~150, 初期値90)
/// 周波数を上げると精度が高くなりますが負荷が上がります、下げるげると精度が低くなりますが負荷が下がります
/// そのため60以下に下げる場合には精度問題に十分注意してください
///
/// Simulation frequency (30~150, default 90).
/// Increasing the frequency increases the accuracy but increases the load, and decreasing the frequency decreases the accuracy but reduces the load.
/// Therefore, if you lower it below 60, be very careful about accuracy issues.
/// </summary>
[Range(Define.System.SimulationFrequency_Low, Define.System.SimulationFrequency_Hi)]
public int simulationFrequency = Define.System.DefaultSimulationFrequency;
maxSimulationCountPerFrame
/// <summary>
/// 1フレームの最大シミュレーション回数(1~5, 初期値3)
/// シミュレーションはフレームレート(fps)とは非同期に実行されます
/// そのためfpsが下がると1フレームに実行されるシミュレーション回数が増えて負荷が高くなります
/// これはモバイル端末などで問題になる場合があります
/// 1フレームで実行されるシミュレーション回数を下げることで最大負荷を調整できます
/// 制限によりシミュレーションがスキップされた場合は補間機能により動作が補われます
///
/// Maximum number of simulations per frame (1 to 5, default value 3).
/// The simulation runs asynchronously with the frame rate(fps).
/// Therefore, when the fps decreases, the number of simulations executed in one frame increases and the load increases.
/// This can be a problem on mobile devices, for example.
/// You can adjust the maximum load by lowering the number of simulations executed in one frame.
/// If the simulation is skipped due to restrictions, the interpolation function compensates for the motion.
/// </summary>
[Range(Define.System.MaxSimulationCountPerFrame_Low, Define.System.MaxSimulationCountPerFrame_Hi)]
public int maxSimulationCountPerFrame = Define.System.DefaultMaxSimulationCountPerFrame;
updateLocation
/// <summary>
/// シミュレーションの更新場所
/// BeforeLateUpdate : LateUpdate()の前に実行します。これはUnity 2D Animationで利用する場合に必要です。
/// AfterLateUpdate : LateUpdate()の後に実行します。初期設定。
///
/// Simulation update location.
/// BeforeLateUpdate : Executes before LateUpdate(). This is required when using Unity 2D Animation.
/// AfterLateUpdate : Executes after LateUpdate(). Initial setting.
/// </summary>
public TimeManager.UpdateLocation updateLocation = TimeManager.UpdateLocation.AfterLateUpdate;
initializationLocation
/// <summary>
/// MonoBehaviourでのMagicaClothの初期化場所。
/// MagicaCloth initialization location in MonoBehaviour.
/// </summary>
public MagicaManager.InitializationLocation initializationLocation = MagicaManager.InitializationLocation.Start;
monitorPlayerLoop
/// <summary>
/// PlayerLoopの監視
/// MagicaClothのシステムはUnityのPlayerLoopに登録することで動作します
/// この登録が他の外部アセットにより上書きされてしまうと、MagicaClothのシステムが停止してしまいます
/// このフラグを有効にすると、PlayerLoopを監視して、上書きされていた場合は再度システムを登録するようになります
///
/// PlayerLoop monitoring.
/// The MagicaCloth system works by registering it in Unity's PlayerLoop.
/// If this registration is overwritten by other external assets, the MagicaCloth system will stop working.
/// When this flag is enabled, the PlayerLoop will be monitored, and the system will be registered again if it has been overwritten.
/// </summary>
public bool monitorPlayerLoop = false;
Methods
Refresh
/// <summary>
/// コンポーネントの内容をマネージャに送信します
/// Sends the contents of the component to the manager.
/// </summary>
public void Refresh()