flame icon indicating copy to clipboard operation
flame copied to clipboard

A Flutter based game engine.

Results 295 flame issues
Sort by recently updated
recently updated
newest added

# Current bug behavior When resetting an effect with a `DelayedEffectController`, the component is not being re-animated # Expected behavior When resetting an effect with a `DelayedEffectController`, the component should...

bug

MRE: ``` class MyPositionComponent extends PositionComponent { @override void onMount() { super.onMount(); updateChildren(); } void updateChildren() { removeAll(children); for (var i = 0; i < 3; i++) { add(Component()); }...

bug

# What could be improved Feedback on the Klondike tutorial from moluderu on Discord: > I tried to compile my feedback on the tutorial I nearly finished. It took me...

enhancement

# Problem to solve Flutter recently added trackpad gestures: https://docs.flutter.dev/release/breaking-changes/trackpad-gestures Scrolling with two fingers on a trackpad does not work on mac osx # Proposal This fix allows you to...

enhancement
Waiting for author

# Current bug behavior I have a game with a red `CircleComponent` using `TapDetector`. In the `onTapUp` callback, I have the following code: ```dart void onTapUp(TapUpInfo info) { componentsAtPoint(info.eventPosition.global) .whereType()...

bug

# Current bug behavior Tiles are not rendered in the correct position. Using Drawing Offset (x,y) and Object Alignment in the Tiled Editor has no effect "in-game" I provided a...

bug

# What could be improved We should have alt text for all images # Why should this be improved To improve accessibility. # Any risks? No # More information Swap...

enhancement

# Current bug behavior There is a problem with the bgm of the app in the background playing in certain situations. If this is a bug, quick action is needed....

bug

# Current bug behavior When the FlameGame gets disposed (page closes), it should remove all components of itself (call `onRemove()` on all the sub-components to let them clear their resources)...

enhancement