TargetUtils.js 696 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. bear:{
  5. default:null,
  6. type:cc.SpriteFrame
  7. },
  8. cat:{
  9. default: null,
  10. type: cc.SpriteFrame
  11. },
  12. fox:{
  13. default: null,
  14. type: cc.SpriteFrame
  15. },
  16. chicken:{
  17. default: null,
  18. type: cc.SpriteFrame
  19. },
  20. frog:{
  21. default: null,
  22. type: cc.SpriteFrame
  23. },
  24. horse:{
  25. default: null,
  26. type: cc.SpriteFrame
  27. }
  28. },
  29. // LIFE-CYCLE CALLBACKS:
  30. // onLoad () {},
  31. // start () {
  32. //
  33. // },
  34. // update (dt) {},
  35. });