Release v2.9.8
[2.9.8] - 2023-12-08
- Added Generate binding code rule (MethodType: Manual, Auto, default is Auto).
#region Binding Components
protected Image _bgImg;
protected Text _msgTxt;
/// <summary>
/// Auto Binding Section
/// </summary>
protected override void OnAutoBind()
{
base.OnAutoBind();
this._bgImg = this.collector.GetNodeComponent<Image>("Bg*Img");
this._msgTxt = this.collector.GetNodeComponent<Text>("Msg*Txt");
}
#endregion