Skip to content

Commit ae163f5

Browse files
committed
Merge pull request cocos2d#2970 from VisualSJ/develop-20698
Fixed a bug that is ObjectExtensionData missing function
2 parents cd67dfe + 1bebe44 commit ae163f5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

extensions/cocostudio/timeline/ActionTimeline.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,16 @@ ccs.ObjectExtensionData = ccs.Class.extend({
7676

7777
getActionTag: function(){
7878
return this._timelineData.getActionTag();
79+
},
80+
81+
setCustomProperty: function(customProperty){
82+
this._customProperty = customProperty;
83+
},
84+
85+
getCustomProperty: function(){
86+
return this._customProperty;
7987
}
88+
8089
});
8190

8291
ccs.ObjectExtensionData.create = function(){

0 commit comments

Comments
 (0)