Jonny
Jonny
There are two deprecations. OK to fix like this? // http://stackoverflow.com/a/14590684/129202 object_setClass(array, _JKArrayClass); // was deprecated: array->isa = _JKArrayClass; // http://stackoverflow.com/a/14590684/129202 object_setClass(dictionary, _JKDictionaryClass); // was deprecated: dictionary->isa = _JKDictionaryClass;
This lib needs deprecations fixed: /JSONKit-master/JSONKit.m:680:12: 'isa' is deprecated /JSONKit-master/JSONKit.m:680:5: Assignment to Objective-C's isa is deprecated in favor of object_setClass() /JSONKit-master/JSONKit.m:931:17: 'isa' is deprecated /JSONKit-master/JSONKit.m:931:5: Assignment to Objective-C's isa is...
This comes up as deprecated: array->isa = _JKArrayClass; Direct access to objective-c's isa is deprecated in favor of object_setClass() and object_getClass() Will you fix this? (Is this library still maintained?)
It looks like this only supports one light source out of the box. Not sure here but if LightEffect::prepareForRender() was rewritten to somehow work with several light positions instead of...
``` The API documentation was outdated for the recovery lifespan. ``` ## Related issue(s) https://github.com/ory/kratos/issues/2579 ## Checklist - [x] I have read the [contributing guidelines](../blob/master/CONTRIBUTING.md). - [x] I have referenced...
### Preflight checklist - [X] I could not find a solution in the existing issues, docs, nor discussions. - [X] I agree to follow this project's [Code of Conduct](https://github.com/ory/kratos/blob/master/CODE_OF_CONDUCT.md). -...
Any ideas on how this could be automated? Doing checks like this on every build in Xcode with warning messages etc might be overkill and a performance hog, but maybe...
This might be a usage mistake from my side, but I can't get CCControlButton to catch any touches while inside a hud layer. I implement HUD layers this way: http://www.raywenderlich.com/4666/how-to-create-a-hud-layer-with-cocos2d...
Using cocos2d-swift that is bundled with SpriteBuilder 1.2.1. I am trying to deal with background music of other apps (aka iPod music) in Cocos2D v3.x. Preferrably, I wish my game...
A user of one of our apps that went live the other day ran into an issue where labels (CCLabelTTF) are just plain invisible. We (well, I) have been able...