You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// PermissionAttachment component was removed from an entity
163
140
}
164
141
165
142
@Nullable
@@ -171,7 +148,7 @@ public class PermissionAttachmentSystem extends RefChangeSystem<EntityStore, Per
171
148
```
172
149
173
150
In this system we listen for changes on the `PermissionAttachment` component inside of the `EntityStore`. This gives us access to `onComponentAdded`, `onComponentSet` and `onComponentRemoved` which in this example caches and persists permission data
174
-
which is stored on a player inside of a custom `PermissionAttachment` component. This example comes from [Permissible](https://github.com/oskarscot/Permissible) permissions plugin where you can find more examples of heavy ECS usage.
151
+
which is stored on a player inside of a custom `PermissionAttachment` component.
0 commit comments