mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Compare commits
5 commits
26cdc3342c
...
2cdfca0fa0
Author | SHA1 | Date | |
---|---|---|---|
|
2cdfca0fa0 | ||
|
1bfcba7422 | ||
|
c9b07433aa | ||
|
af13ea9f5f | ||
|
61e0df82ae |
4 changed files with 448 additions and 264 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@rbxts/jecs",
|
||||
"version": "0.5.3",
|
||||
"version": "0.5.4",
|
||||
"description": "Stupidly fast Entity Component System",
|
||||
"main": "jecs.luau",
|
||||
"repository": {
|
||||
|
|
|
@ -1262,7 +1262,7 @@ TEST("world:target", function()
|
|||
|
||||
local records = debug_world_inspect(world).records(e)
|
||||
CHECK(jecs.pair_first(world, pair(B, C)) == B)
|
||||
CHECK(records[pair(B, C)].column > records[pair(A, E)].column)
|
||||
CHECK(records[pair(B, C)] > records[pair(A, E)])
|
||||
CHECK(world:target(e, A, 0) == B)
|
||||
CHECK(world:target(e, A, 1) == C)
|
||||
CHECK(world:target(e, A, 2) == D)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ukendio/jecs"
|
||||
version = "0.5.3"
|
||||
version = "0.5.4"
|
||||
registry = "https://github.com/UpliftGames/wally-index"
|
||||
realm = "shared"
|
||||
license = "MIT"
|
||||
|
|
Loading…
Reference in a new issue