1
一般に、公開者のフィールドがインスペクタで公開されるようにスクリプトが記述されています。代わりにプロパティを使用するいくつかの方法はありますか?Unityでは、InspectorウィンドウでC#* Properties *を公開できますか?
// instead of this
public GameObject wrongBall;
// is there some way to do this (to trigger an event in the setter, for instance)
// and have it show up in the inspector window?
public GameObject WrongBallProperty
{
get;
set;
}
非常に多くのバージョンの後でUnityがこれをサポートしていないことを信じられないほど素晴らしい。 –
@RayKoopa問題はシリアル化です。問題を起こさずにプロパティよりもフィールドのシリアル化を行う方が簡単です。 –