显示3d模型

This commit is contained in:
bob
2025-06-23 18:08:03 +08:00
parent 2024bfb990
commit 197897a323
21 changed files with 427 additions and 19 deletions

View File

@@ -0,0 +1,27 @@
/**本脚本为自动生成每次生成会覆盖请勿手动修改生成插件文档及项目地址https://git.whoot.com/whoot-games/whoot.fguieditorplugin**/
using FairyGUI;
using FairyGUI.Utils;
using NBC;
namespace NBF
{
public partial class ModelTexture
{
public const string URL = "ui://6hgkvlau5dtxm9";
public GGraph ModelHolder;
public GGraph TouchHolder;
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
ModelHolder = (GGraph)GetChild("ModelHolder");
TouchHolder = (GGraph)GetChild("TouchHolder");
OnInited();
UILanguage.TrySetComponentLanguage(this);
}
}
}