Skip to content

Commit 2f27be4

Browse files
authored
feat: using assoc id in 'other' context api (#247)
1 parent 64fedea commit 2f27be4

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

ecsact/runtime/dynamic.h

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -159,20 +159,15 @@ ECSACT_DYNAMIC_API_FN(bool, ecsact_system_execution_context_same)
159159
);
160160

161161
/**
162-
* Get execution context for a different entity
163-
*
164-
* Only available if has one of these capabilities:
165-
* - `ECSACT_SYS_CAP_OPTIONAL_READONLY`
166-
* - `ECSACT_SYS_CAP_OPTIONAL_WRITEONLY`
167-
* - `ECSACT_SYS_CAP_OPTIONAL_READWRITE`
162+
* Get execution context for a different entity associated with this system.
168163
*/
169164
ECSACT_DYNAMIC_API_FN(
170165
struct ecsact_system_execution_context*,
171166
ecsact_system_execution_context_other
172167
)
173168
( //
174169
struct ecsact_system_execution_context* context,
175-
ecsact_entity_id entity_id
170+
ecsact_system_assoc_id assoc_id
176171
);
177172

178173
/**

0 commit comments

Comments
 (0)