Richard Groves

Results 15 issues of Richard Groves

Due to this issue https://github.com/yannickl/DynamicColor/issues/59 in DynamicColor repo this project also wont build in a release configuration. The reporter of that issue has forked DynamicColor at https://github.com/t0rst/DynamicColor with a workaround....

Line 247 of cpPolyline - https://github.com/slembcke/Chipmunk2D/blob/edf83e5603c5a0a104996bd816fca6d3facedd6a/src/cpPolyline.c#L247 is allocating an array of size cpPolyline objects and assigning it to a cpPolyline** - should the sizeof be sizeof(cpPolyline*) ? XCode analyzer complains:...

Was allocating a whole cpPolyline when each entry just needed a pointer

Catches the problem that https://github.com/cocos2d/cocos2d-objc/pull/1318 fixes And provides a starting point for further tests. Major current functionality not covered is: - (CCColor*) initWithHue:(float)hue saturation:(float)saturation brightness:(float)brightness alpha:(float)alpha and none of the...

If a context name was passed the DeleteContextsRequest.prototype._requestOptions would crash.

### New Issue Checklist - [x ] I am not disclosing a [vulnerability](https://github.com/parse-community/Parse-SDK-iOS-OSX/security/policy). - [ x] I am not just asking a [question](https://github.com/parse-community/.github/blob/main/SUPPORT.md). - [ x] I have searched through...

type:bug

For a given ZIP file (small, ~7KB containing just two files) I can open the file with the OS (macOS 11.1) and the code below has one path that opens...

The CCBusyNode has a contentSize of 0 which can cause problems when using it with other nodes. Not sure how exactly you'd work out the content size of the activity...

If I change the .position of a CCTransformationNode it wont refresh its transform (internal _dirty flag not set). I presume other properties like rotation etc. will be ignored. I changed...