mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-13 19:48:00 +07:00
name embedded fragments
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
```
|
||||
TAG :: fragment
|
||||
|
||||
NAME :: fragment
|
||||
DEFAULT :: fragment
|
||||
CONSTRUCT :: fragment
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
## Backlog
|
||||
|
||||
- add destroing policies (fragments, phases, systems)
|
||||
- add debug view for chunks with help of NAME fragment traits
|
||||
|
||||
## Known issues
|
||||
|
||||
|
||||
29
evolved.lua
29
evolved.lua
@@ -7056,6 +7056,35 @@ __lua_assert(__evolved_insert(__CONSTRUCT, __ON_REMOVE, __update_fragment_constr
|
||||
---
|
||||
---
|
||||
|
||||
__lua_assert(__evolved_insert(__TAG, __NAME, 'TAG'))
|
||||
|
||||
__lua_assert(__evolved_insert(__NAME, __NAME, 'NAME'))
|
||||
__lua_assert(__evolved_insert(__DEFAULT, __NAME, 'DEFAULT'))
|
||||
__lua_assert(__evolved_insert(__CONSTRUCT, __NAME, 'CONSTRUCT'))
|
||||
|
||||
__lua_assert(__evolved_insert(__INCLUDES, __NAME, 'INCLUDES'))
|
||||
__lua_assert(__evolved_insert(__EXCLUDES, __NAME, 'EXCLUDES'))
|
||||
|
||||
__lua_assert(__evolved_insert(__ON_SET, __NAME, 'ON_SET'))
|
||||
__lua_assert(__evolved_insert(__ON_ASSIGN, __NAME, 'ON_ASSIGN'))
|
||||
__lua_assert(__evolved_insert(__ON_INSERT, __NAME, 'ON_INSERT'))
|
||||
__lua_assert(__evolved_insert(__ON_REMOVE, __NAME, 'ON_REMOVE'))
|
||||
|
||||
__lua_assert(__evolved_insert(__PHASE, __NAME, 'PHASE'))
|
||||
__lua_assert(__evolved_insert(__AFTER, __NAME, 'AFTER'))
|
||||
|
||||
__lua_assert(__evolved_insert(__QUERY, __NAME, 'QUERY'))
|
||||
__lua_assert(__evolved_insert(__EXECUTE, __NAME, 'EXECUTE'))
|
||||
|
||||
__lua_assert(__evolved_insert(__PROLOGUE, __NAME, 'PROLOGUE'))
|
||||
__lua_assert(__evolved_insert(__EPILOGUE, __NAME, 'EPILOGUE'))
|
||||
|
||||
---
|
||||
---
|
||||
---
|
||||
---
|
||||
---
|
||||
|
||||
__lua_assert(__evolved_insert(__TAG, __TAG))
|
||||
|
||||
__lua_assert(__evolved_insert(__INCLUDES, __CONSTRUCT, __component_list))
|
||||
|
||||
Reference in New Issue
Block a user