flixel icon indicating copy to clipboard operation
flixel copied to clipboard

Free, cross-platform 2D game engine powered by Haxe and OpenFL

Results 276 flixel issues
Sort by recently updated
recently updated
newest added

example ```hx var monospaceLetters:String = " !\"#$%&'()*+,-.\\0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[/]^_`abcdefghijklmnopqrstuvwxyz{|}~"; var charSize = FlxPoint.get(7, 10); var fontMonospace = FlxBitmapFont.fromMonospace("assets/images/RetroMedievalV3.png", monospaceLetters, charSize); var text:FlxBitmapText = new FlxBitmapText(fontMonospace); text.scrollFactor.set(0, 0); text.setPosition(0, 100); text.autoSize = false;...

After you set a FlxSprite's scale to something other than 1.0, FlxSprite.pixelsOverlapPoint() still behaves as if the image is unscaled, which is unintuitive. Is this intended behaviour? Currently I'm using...

- **Haxe version:** 4.1.5 - **Flixel version:** Can't remember (possibly 2.9.0) - **OpenFL version:** Can't remember - **Lime version:** 7.9.0 - **Affected targets:** lime ________________________________ **Code snippet reproducing the issue**:...

- **Haxe version:** 4.1.5 - **Flixel version:** 4.10.0 - **OpenFL version:** 9.1.0 - **Lime version:** 7.9.0 - **Affected targets:** Hashlink ________________________________ **Code snippet reproducing the issue**: Using the [Filters](https://github.com/HaxeFlixel/flixel-demos/tree/dev/Effects/Filters/source) demo...

**Code snippet reproducing the issue**: `PlayState.hx` ```haxe package; import flixel.text.FlxText; import flixel.system.FlxAssets.FlxShader; import openfl.filters.ShaderFilter; import flixel.FlxG; import flixel.FlxState; class PlayState extends FlxState { override public function create():Void { super.create(); FlxG.game.setFilters([new...

Set `FLX_SPLIT_SOUND_TRAY` in Project.xml to use. Seperates controls for Sound, Music & Master Volumes. Defaults: * `+` / `-` Sound Up/Down * `0` Sound Mute * `/` / `*` Music...

FlxSubState's closeCallback is not used when you close it from its own function fixed code: ``` haxe public function close():Void { if (closeCallback != null) closeCallback(); if (_parentState != null...

- **Haxe version:** 3.5.0 - **Flixel version:** 4.9.0 - **OpenFL version:** 9.1.0 - **Lime version:** 7.9.0 - **Affected targets:** android ________________________________ **Code snippet reproducing the issue**: ```haxe package; import Saves;...

- **Haxe version: 4.3.0-rc.1+5e0a029** - **Flixel version: 4.10.0** - **OpenFL version: 9.1.0-LqBuHo** - **Lime version: 7.9.0** - **Affected targets: Web** ________________________________ **Code snippet reproducing the issue**: ```haxe import flixel.system.FlxBasePreloader; import...

- **Haxe version:** 4.0.5 - **Flixel version:** latest - **OpenFL version:** latest - **Lime version:** latest - **Affected targets:** Neko, Windows, HTML5... ________________________________ **Code snippet reproducing the issue**: `PlayState.hx` ```package;...