@@ -33,7 +33,8 @@ namespace cocos2d {
33
33
class NSObject ;
34
34
class NSZone ;
35
35
36
- /* * Base class for Easing actions
36
+ /* *
37
+ @brief Base class for Easing actions
37
38
*/
38
39
class CCX_DLL CCEaseAction : public CCIntervalAction
39
40
{
@@ -57,7 +58,8 @@ class CCX_DLL CCEaseAction : public CCIntervalAction
57
58
CCIntervalAction *m_pOther;
58
59
};
59
60
60
- /* * Base class for Easing actions with rate parameters
61
+ /* *
62
+ @brief Base class for Easing actions with rate parameters
61
63
*/
62
64
class CCX_DLL CCEaseRateAction : public CCEaseAction
63
65
{
@@ -83,7 +85,8 @@ class CCX_DLL CCEaseRateAction : public CCEaseAction
83
85
float m_fRate;
84
86
};
85
87
86
- /* * CCEaseIn action with a rate
88
+ /* *
89
+ @brief CCEaseIn action with a rate
87
90
*/
88
91
class CCX_DLL CCEaseIn : public CCEaseRateAction
89
92
{
@@ -95,7 +98,8 @@ class CCX_DLL CCEaseIn : public CCEaseRateAction
95
98
static CCEaseIn* actionWithAction (CCIntervalAction* pAction, float fRate );
96
99
};
97
100
98
- /* * CCEaseOut action with a rate
101
+ /* *
102
+ @brief CCEaseOut action with a rate
99
103
*/
100
104
class CCX_DLL CCEaseOut : public CCEaseRateAction
101
105
{
@@ -108,7 +112,8 @@ class CCX_DLL CCEaseOut : public CCEaseRateAction
108
112
static CCEaseOut* actionWithAction (CCIntervalAction* pAction, float fRate );
109
113
};
110
114
111
- /* * CCEaseInOut action with a rate
115
+ /* *
116
+ @brief CCEaseInOut action with a rate
112
117
*/
113
118
class CCX_DLL CCEaseInOut : public CCEaseRateAction
114
119
{
@@ -122,7 +127,8 @@ class CCX_DLL CCEaseInOut : public CCEaseRateAction
122
127
static CCEaseInOut* actionWithAction (CCIntervalAction* pAction, float fRate );
123
128
};
124
129
125
- /* * CCEase Exponential In
130
+ /* *
131
+ @brief CCEase Exponential In
126
132
*/
127
133
class CCX_DLL CCEaseExponentialIn : public CCEaseAction
128
134
{
@@ -136,7 +142,8 @@ class CCX_DLL CCEaseExponentialIn : public CCEaseAction
136
142
static CCEaseExponentialIn* actionWithAction (CCIntervalAction* pAction);
137
143
};
138
144
139
- /* * Ease Exponential Out
145
+ /* *
146
+ @brief Ease Exponential Out
140
147
*/
141
148
class CCX_DLL CCEaseExponentialOut : public CCEaseAction
142
149
{
@@ -151,7 +158,8 @@ class CCX_DLL CCEaseExponentialOut : public CCEaseAction
151
158
152
159
};
153
160
154
- /* * Ease Exponential InOut
161
+ /* *
162
+ @brief Ease Exponential InOut
155
163
*/
156
164
class CCX_DLL CCEaseExponentialInOut : public CCEaseAction
157
165
{
@@ -165,7 +173,8 @@ class CCX_DLL CCEaseExponentialInOut : public CCEaseAction
165
173
166
174
};
167
175
168
- /* * Ease Sine In
176
+ /* *
177
+ @brief Ease Sine In
169
178
*/
170
179
class CCX_DLL CCEaseSineIn : public CCEaseAction
171
180
{
@@ -179,7 +188,8 @@ class CCX_DLL CCEaseSineIn : public CCEaseAction
179
188
static CCEaseSineIn* actionWithAction (CCIntervalAction* pAction);
180
189
};
181
190
182
- /* * Ease Sine Out
191
+ /* *
192
+ @brief Ease Sine Out
183
193
*/
184
194
class CCX_DLL CCEaseSineOut : public CCEaseAction
185
195
{
@@ -193,7 +203,8 @@ class CCX_DLL CCEaseSineOut : public CCEaseAction
193
203
static CCEaseSineOut* actionWithAction (CCIntervalAction* pAction);
194
204
};
195
205
196
- /* * Ease Sine InOut
206
+ /* *
207
+ @brief Ease Sine InOut
197
208
*/
198
209
class CCX_DLL CCEaseSineInOut : public CCEaseAction
199
210
{
@@ -206,7 +217,8 @@ class CCX_DLL CCEaseSineInOut : public CCEaseAction
206
217
static CCEaseSineInOut* actionWithAction (CCIntervalAction* pAction);
207
218
};
208
219
209
- /* * Ease Elastic abstract class
220
+ /* *
221
+ @brief Ease Elastic abstract class
210
222
@since v0.8.2
211
223
*/
212
224
class CCX_DLL CCEaseElastic : public CCEaseAction
@@ -235,7 +247,8 @@ class CCX_DLL CCEaseElastic : public CCEaseAction
235
247
float m_fPeriod;
236
248
};
237
249
238
- /* * Ease Elastic In action.
250
+ /* *
251
+ @brief Ease Elastic In action.
239
252
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
240
253
@since v0.8.2
241
254
*/
@@ -253,7 +266,8 @@ class CCX_DLL CCEaseElasticIn : public CCEaseElastic
253
266
static CCEaseElasticIn* actionWithAction (CCIntervalAction *pAction, float fPeriod );
254
267
};
255
268
256
- /* * Ease Elastic Out action.
269
+ /* *
270
+ @brief Ease Elastic Out action.
257
271
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
258
272
@since v0.8.2
259
273
*/
@@ -271,7 +285,8 @@ class CCX_DLL CCEaseElasticOut : public CCEaseElastic
271
285
static CCEaseElasticOut* actionWithAction (CCIntervalAction *pAction, float fPeriod );
272
286
};
273
287
274
- /* * Ease Elastic InOut action.
288
+ /* *
289
+ @brief Ease Elastic InOut action.
275
290
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
276
291
@since v0.8.2
277
292
*/
@@ -289,7 +304,8 @@ class CCX_DLL CCEaseElasticInOut : public CCEaseElastic
289
304
static CCEaseElasticInOut* actionWithAction (CCIntervalAction *pAction, float fPeriod );
290
305
};
291
306
292
- /* * CCEaseBounce abstract class.
307
+ /* *
308
+ @brief CCEaseBounce abstract class.
293
309
@since v0.8.2
294
310
*/
295
311
class CCX_DLL CCEaseBounce : public CCEaseAction
@@ -303,8 +319,9 @@ class CCX_DLL CCEaseBounce : public CCEaseAction
303
319
static CCEaseBounce* actionWithAction (CCIntervalAction* pAction);
304
320
};
305
321
306
- /* * CCEaseBounceIn action.
307
- @warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
322
+ /* *
323
+ @brief CCEaseBounceIn action.
324
+ @warning This action doesn't use a bijective function. Actions like Sequence might have an unexpected result when used with this action.
308
325
@since v0.8.2
309
326
*/
310
327
class CCX_DLL CCEaseBounceIn : public CCEaseBounce
@@ -319,7 +336,8 @@ class CCX_DLL CCEaseBounceIn : public CCEaseBounce
319
336
static CCEaseBounceIn* actionWithAction (CCIntervalAction* pAction);
320
337
};
321
338
322
- /* * EaseBounceOut action.
339
+ /* *
340
+ @brief EaseBounceOut action.
323
341
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
324
342
@since v0.8.2
325
343
*/
@@ -335,7 +353,8 @@ class CCX_DLL CCEaseBounceOut : public CCEaseBounce
335
353
static CCEaseBounceOut* actionWithAction (CCIntervalAction* pAction);
336
354
};
337
355
338
- /* * CCEaseBounceInOut action.
356
+ /* *
357
+ @brief CCEaseBounceInOut action.
339
358
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
340
359
@since v0.8.2
341
360
*/
@@ -350,7 +369,8 @@ class CCX_DLL CCEaseBounceInOut : public CCEaseBounce
350
369
static CCEaseBounceInOut* actionWithAction (CCIntervalAction* pAction);
351
370
};
352
371
353
- /* * CCEaseBackIn action.
372
+ /* *
373
+ @brief CCEaseBackIn action.
354
374
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
355
375
@since v0.8.2
356
376
*/
@@ -366,7 +386,8 @@ class CCX_DLL CCEaseBackIn : public CCEaseAction
366
386
static CCEaseBackIn* actionWithAction (CCIntervalAction* pAction);
367
387
};
368
388
369
- /* * CCEaseBackOut action.
389
+ /* *
390
+ @brief CCEaseBackOut action.
370
391
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
371
392
@since v0.8.2
372
393
*/
@@ -382,7 +403,8 @@ class CCX_DLL CCEaseBackOut : public CCEaseAction
382
403
static CCEaseBackOut* actionWithAction (CCIntervalAction* pAction);
383
404
};
384
405
385
- /* * CCEaseBackInOut action.
406
+ /* *
407
+ @brief CCEaseBackInOut action.
386
408
@warning This action doesn't use a bijective fucntion. Actions like Sequence might have an unexpected result when used with this action.
387
409
@since v0.8.2
388
410
*/
0 commit comments