AgentControllerのanimatorプロパティについて
Posted: 2019/05/27 05:36
Arborバージョン:3.5.3
AgentControllerのanimatorプロパティの定義が以下のようになっています。
setterの処理は
が正しいのではないでしょうか。
ご確認のほどよろしくお願いいたします。
AgentControllerのanimatorプロパティの定義が以下のようになっています。
Code: Select all
public Animator animator
{
get
{
return _Animator;
}
set
{
_Animator = animator;
}
}
Code: Select all
_Animator = value;
ご確認のほどよろしくお願いいたします。