mark on_xxx fragments as unique

This commit is contained in:
BlackMATov
2025-04-28 06:39:20 +07:00
parent 943f6ead0a
commit d5d5620fea
2 changed files with 8 additions and 5 deletions

View File

@@ -146,7 +146,9 @@ builder:tag :: builder
builder:name :: string -> builder
builder:prefab :: builder
builder:hidden :: builder
builder:unique :: builder
builder:explicit :: builder
builder:default :: component -> builder
builder:duplicate :: {component -> component} -> builder

View File

@@ -5311,12 +5311,8 @@ __evolved_set(__PREFAB, __UNIQUE)
__evolved_set(__PREFAB, __EXPLICIT)
__evolved_set(__UNIQUE, __TAG)
__evolved_set(__UNIQUE, __UNIQUE)
__evolved_set(__UNIQUE, __EXPLICIT)
__evolved_set(__EXPLICIT, __TAG)
__evolved_set(__EXPLICIT, __UNIQUE)
__evolved_set(__EXPLICIT, __EXPLICIT)
__evolved_set(__INCLUDES, __DEFAULT, {})
__evolved_set(__INCLUDES, __DUPLICATE, __list_copy)
@@ -5324,6 +5320,11 @@ __evolved_set(__INCLUDES, __DUPLICATE, __list_copy)
__evolved_set(__EXCLUDES, __DEFAULT, {})
__evolved_set(__EXCLUDES, __DUPLICATE, __list_copy)
__evolved_set(__ON_SET, __UNIQUE)
__evolved_set(__ON_ASSIGN, __UNIQUE)
__evolved_set(__ON_INSERT, __UNIQUE)
__evolved_set(__ON_REMOVE, __UNIQUE)
__evolved_set(__DISABLED, __TAG)
---