chore: initialize standalone UPM package
Publish UPM package / publish (push) Failing after 1s

This commit is contained in:
2026-08-26 02:50:43 +08:00
commit 1180be88a6
72 changed files with 3331 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
namespace ShrinkTutorial
{
public enum ShrinkTutorialTargetMode
{
None = 0,
Path = 1,
AnchorId = 2
}
public enum ShrinkTutorialCompleteCondition
{
ClickTarget = 0,
AnyClick = 1,
CustomEvent = 2,
Auto = 3,
DragToTarget = 4
}
public enum ShrinkTutorialDialogAnchor
{
Auto = 0,
Top = 1,
Bottom = 2,
Left = 3,
Right = 4
}
public enum ShrinkTutorialMaskShape
{
None = 0,
Rect = 1,
Circle = 2
}
}