fix:1、修复bug:尾部移动到边界后才隐藏。2、添加删除道具

This commit is contained in:
2026-06-13 18:27:00 +08:00
parent 9b468b835f
commit 6f351139cf
9 changed files with 279 additions and 100 deletions
@@ -0,0 +1,27 @@
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.Arrow_game
{
public partial class com_finger : GComponent
{
public GImage finger;
public Transition t0;
public const string URL = "ui://sjl9teijrsd4f";
public static com_finger CreateInstance()
{
return (com_finger)UIPackage.CreateObject("Arrow_game", "com_finger");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
finger = (GImage)GetChildAt(0);
t0 = GetTransitionAt(0);
}
}
}