blob: 0eaa1471ee42723e745738bcd0cc359f02ff6e18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace VRM
{
/// <summary>
///
/// * OnImported(Serializableなメンバの初期化)とStart(ランタイムのメンバ初期化)で
/// セットアップが終わるように注意する。
///
/// * Reset, Awake, OnEnableには注意する(Editor時はAddComponentで呼ばれ、Runtimeでは開始時に呼ばれる)
///
/// </summary>
public interface IVRMComponent
{
/// <summary>
/// Serializableな値を初期化する
/// </summary>
/// <param name="imported"></param>
void OnImported(VRMImporterContext context);
}
}
|