We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50399ae commit fe7f99cCopy full SHA for fe7f99c
cocos2d/core/platform/CCTypes.js
@@ -60,12 +60,10 @@ _p._getB = function () {
60
_p._setB = function (value) {
61
this._val = (this._val & 0xffff00ff) | (value << 8);
62
};
63
-
64
_p._getA = function () {
65
return this._val & 0x000000ff;
66
67
68
-_p.setA = function (value) {
+_p._setA = function (value) {
69
this._val = (this._val & 0xffffff00) | value;
70
71
0 commit comments