Hyper Sonic

Results 135 issues of Hyper Sonic

With an instance of SoundEffectInstance, setting soundEffectInstance.Pitch = 1f or -1f causes an ArgumentOutOfRangeException (unless you use XACT). The same happens if you call SoundEffect.Play with pitch = 1f or...

When using Hain, all my Steam and Uplay games have the same icon. In my particular case, they use the icon of a Uplay game, Steep. ![2018-11-10 hain all steam...

When cancelling a Build, the Temporary-Build folder and its link.xml and meta files remain. This is because BuildHelper.cs PackagesLinkXmlExtractor.OnPostprocessBuild is not called. I found a way to plug build cancel...

I've noticed that binary operations were now supported, but not in-place binary operations: ^= &= |= ^^= = >>>= In addition, the in-place integer division is missing: \\= This is...

When used together with `p8tool build --lua-minify`, the sub-options `--keep-all-names` and `--keep-names-from-file=...` are ignored. When used directly with `p8tool luamin` to minify a file already built, they do work. It's...

**Error** After upgrading to latest picotool, in the hope that the new Unicode support allows me to work with glyphs, I tried to run `p8tool listrawlua myfile.p8` but I got:...

If the main or a required lua script is empty (ignoring comments), the parsing step will fail with IndexError: ``` Traceback (most recent call last): File "/usr/local/bin/p8tool", line 8, in...

Apart from __index, metamethods are renamed (__call, __concat, __add, etc. become a, b, c...) which will break expected behavior with the corresponding operations (t(), t1..t2, t1+t2, etc.) Also see #40...

It might be nice to be able to list all installed packages as other package managers do, with some command `openupm list`.

enhancement

Unlike the original pygame, Rect cannot be constructed from a sprite. In pygame, Rects are basically constructed with the GameRect_FromObject function in [rect.c](https://bitbucket.org/pygame/pygame/src/407caa445ee033bfbcf5e9cc5c3961c0aa9db8f4/src/rect.c?at=default&fileviewer=file-view-default), which supports passing another Rect, (x, y),...