We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3107977 commit 2a2629aCopy full SHA for 2a2629a
1 file changed
README.md
@@ -30,8 +30,8 @@ Flecs is a powerful ECS framework written in C that provides high-performance da
30
31
```gradle
32
dependencies {
33
- implementation 'io.github.elebras1:flecs-java:0.5.2'
34
- annotationProcessor 'io.github.elebras1:flecs-java:0.5.2'
+ implementation 'io.github.elebras1:flecs-java:0.5.3'
+ annotationProcessor 'io.github.elebras1:flecs-java:0.5.3'
35
36
}
37
```
@@ -78,6 +78,9 @@ public class Example {
78
Entity enemy = world.obtainEntity(world.entity("Enemy"));
79
enemy.set(new Position(10, 5))
80
.set(new Velocity(-0.5f, 0));
81
+
82
+ // Set number of worker threads
83
+ world.setThreads(4);
84
85
// Create a movement system
86
world.system("MoveSystem")
0 commit comments