Files
flame/packages
Alexey Volkov f840210bf9 feat: onComponentTypeCheck support for ShapeHitbox (#1981)
onComponentTypeCheck was only supported for components but not for hitboxes, because ShapeHitbox implements GenericCollisionCallbacks instead CollisionCallbacks.

Specifying onComponentTypeCheck for individual hitboxes might be useful in cases where Component have hitboxes for collisions and also some utility hitboxes (for example, to check available directions for pathfinding). Colliding between this two types of hitboxes should not lead to movement restrictions and so on. But without onComponentTypeCheck in ShapeHitbox we can not to perform such check.
2022-10-01 23:38:43 +02:00
..
2022-09-19 21:17:50 +00:00

Flame repository structure

The Flame repository is a monorepo which contains both the main Flame repository, and its bridge packages.

Note that not all bridge packages have moved to the monorepo, so some may still be on their own repositories, since this is a new organizational change and we are gradually migrating all of them to this repository.

Bridge packages

Bridge packages are packages which:

  • Provides Flame with an interface to another external package (e.g. flame_audio which is Flame + Audioplayers, flame_tiled, which is Flame + tiled).
  • Packages with features that are somehow very context specific and doesn't have a place inside the core package (e.g. flame_splash_screen).

Index