Skip to content

Release v2.9.8

Compare
Choose a tag to compare
@michael811125 michael811125 released this 08 Dec 03:15
· 199 commits to master since this release

[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