Dlean Jeans

Results 10 issues of Dlean Jeans

Code: ``` assert dpytest.verify().message().contains().content(EXPECTED) ``` Got: ``` test_unscramble - AssertionError: assert ``` Expected: ``` test_unscramble - AssertionError: assert 'apparition' in '`opiaripat` → Not found!' ``` which is from ``` assert...

usability

Someone just asked what was game on the website on the Discord server, so I think it's a good idea to add a link to the game or its [YouTube...

enhancement
topic:theme
topic:content

I simply created it like this: ``` haxe var colorSwatch = new FlxUIColorSwatchSelecter(50, 400, null, [0xFF0000, 0x00FF00, 0x0000FF]); add(colorSwatch); ``` Then it crashes while setting the `midTone` because the `colors`...

For issue #61 This passes all the tests I wrote over [DleanJeans/hscript-plus](https://github.com/DleanJeans/hscript-plus). Let me know if there's something wrong!

1. Create a class named `System` in a OpenFL/HaxeFlixel project 2. Write some code which uses `System` in another class (maybe `Main`) 3. Set a breakpoint there (`Main` in this...

bug

Some features are not supported like text, gradient, rotation

Properties like `common_name` or `official_name` are not available for many countries and territories raising `AttributeError` when accessed. Current workaround is: ``` official_name = getattr(country, 'official_name', '') common_name = getattr(country, 'common_name',...

enhancement

Hi, I'm using Edge with HaxeFlixel. And I use FlxSprite as a IComponent. This should reproduce the problem: ``` var sprite = new FlxSprite(); var entity = engine.create([sprite]); trace(entity.exists(sprite)); //...