remove world:targets() mention in 042_target.luau

This commit is contained in:
kurokuukyo 2026-04-29 09:21:44 -04:00
parent 7824c1aa55
commit bbf9727220

View file

@ -6,10 +6,6 @@
Use target when you have queried with a wildcard (e.g. pair(Eats, jecs.Wildcard)) Use target when you have queried with a wildcard (e.g. pair(Eats, jecs.Wildcard))
and need the actual target entity for each result. Without an index, the and need the actual target entity for each result. Without an index, the
default is 0 (the first target). default is 0 (the first target).
world:targets(entity, relation) returns an iterator for all targets of a relation.
Use targets when you need to get every possible target for all indexes.
]] ]]
local jecs = require("@jecs") local jecs = require("@jecs")
@ -39,8 +35,3 @@ print(third == nil) -- true
-- Omitting the index is the same as index 0 -- Omitting the index is the same as index 0
local default = world:target(bob, Eats) local default = world:target(bob, Eats)
print(default == Apples) -- true print(default == Apples) -- true
-- Iterates through all targets
for target in world:targets(bob, Eats) do
print(target)
end