Tomasz Grajewski

Results 11 issues of Tomasz Grajewski

**Describe the bug** Renaming intermediate folder in a watched directory structure is reported by Chokidar as addition (`add` event) and there is no other events, like `unlink`, `unlinkDir`, `rename`, etc....

`pip install pysfml` doesn't work, as advertised in the documentation.

This line crashes python: sprite = sf.Sprite(None) Would be great if at least an exception could be thrown here. And even better would be if a non-renderable sprite would be...

The Color class from SFML contains `.toInteger()` method, which is missing here, could be implemented as `__int__()`, which would be great.

The `Color.__repr__()` method returns a string with long property names 'red', 'green', 'blue' and 'alpha`, while the Color class has properties 'r', 'g', 'b', 'a'. ``` class Color: def __repr__(self):...

There are two enums defined in the graphics module, but they aren't used in the BlendMode class: ``` class Factor(IntEnum): ... class Equation(IntEnum): ... ``` The BlendMode class has various...

Web Audio allows to set the `.loopStart` and `.loopEnd` properties on the `AudioBufferSourceNode`. Can I use them with Sono?

I've noticed that `isGlob()` returns `false` when called with simple patterns with only question mark in them. Is this intended? ```javascript isGlob('*'); // true isGlob('?'); // false isGlob('audio/?.m4a'); // false...

Just a minor thing, the JSDoc comment says: ```js /* * @param {Boolean} [opts.strict=true] be laissez faire about mutiple slashes */ ``` But the function signature has this argument set...

**Is your feature request related to a problem? Please describe.** I'm generating texture atlasses from other smaller images. I would like to crop the smaller images from surrounding transparency, which...

help wanted
enhancement
solution in issue