Files
flame/packages
Yukiteru Attano cc035fb4a3 refactor: Change the ClipComponent factory Constructor to redirect Constructor (#3089)
The ClipComponent factory Constructor "circle", "rectangle" and
"polygon" are now redirect Constructor while they persist their previous
behaviour and syntax.
This allows subclasses of ClipComponent to directly address them.
```dart
/// Examples: 

SubClass.fancyShape() : super.polygon();
Smiley() : super.circle();
```

---------

Co-authored-by: Lukas Klingsbo <lukas.klingsbo@gmail.com>
2024-03-21 11:52:12 +01:00
..

Flame repository structure

The Flame repository is a monorepo which contains both the main Flame package and other so-called bridge packages.

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).

While most of the officially supported bridge packages live in this monorepo, a few can be found under Flame Engine's GitHub organization. There are also many bridge packages developed and maintained by other members of the community.