We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using ;
namespace ET.Client { [ComponentOf(typeof(FUIEntity))] public class BasicsPanel: Entity, IAwake { private FUI_BasicsPanel _fuiBasicsPanel;
public FUI_BasicsPanel FUIBasicsPanel { get => _fuiBasicsPanel ??= (FUI_BasicsPanel)this.GetParent<FUIEntity>().GComponent; } }
}
fairygui官方示例,有很多按钮那个页面导入报错,上面是BasicsPanel.cs内容,using后面缺失;同时没有FUI_BasicsPanel 这个文件;
The text was updated successfully, but these errors were encountered:
页面必须包含自定义组件名称,不然会被忽略,无法生成对应的FUI_*Panel
Sorry, something went wrong.
谢谢
No branches or pull requests
using ;
namespace ET.Client
{
[ComponentOf(typeof(FUIEntity))]
public class BasicsPanel: Entity, IAwake
{
private FUI_BasicsPanel _fuiBasicsPanel;
}
fairygui官方示例,有很多按钮那个页面导入报错,上面是BasicsPanel.cs内容,using后面缺失;同时没有FUI_BasicsPanel 这个文件;
The text was updated successfully, but these errors were encountered: