We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9339750 commit 87a814aCopy full SHA for 87a814a
ecsact/runtime/dynamic.h
@@ -135,6 +135,19 @@ ECSACT_DYNAMIC_API_FN(bool, ecsact_system_execution_context_has)
135
...
136
);
137
138
+/**
139
+ * Enable or disable streaming data for the given component.
140
+ * @param ... if the component has indexed fields then those fields must be
141
+ * supplied to the variadic arguments in declaration order.
142
+ */
143
+ECSACT_DYNAMIC_API_FN(void, ecsact_system_execution_context_stream_toggle)
144
+( //
145
+ struct ecsact_system_execution_context* context,
146
+ ecsact_component_id component_id,
147
+ bool streaming_enabled,
148
+ ...
149
+);
150
+
151
/**
152
* Generate a new entity with specified components.
153
*
0 commit comments