Helloworld and Cocos Creater instruction

  首先我们移除原来的HelloWord组件

  

  2.添加我们的javascript脚本

  

  

  PS:这就是组件化的好处,我们assets其实就是一个数据库,我们想要script属于哪个元器件,就像我那样直接拖拽就可以了。大家也可以直接在属性检查器中修改文本

[javascript]  view plain  copy
 
  1. <pre name="code" class="javascript"><span style="font-family:KaiTi_GB2312;color: rgb(51, 51, 51); font-size: 24px;">cc.Class({  
  2.     extends: cc.Component,  
  3.       
  4.     //属性  
  5.     properties: {  
  6.         label: {  
  7.             //默认为空  
  8.             defaultnull,  
  9.             //类型是 label标签  
  10.             type: cc.Label  
  11.         },  
  12.         //显示的值  
  13.         text: 'Hello, World!'  
  14.     },  
  15.   
  16.   
  17.     // 初始化  
  18.     onLoad: function () {  
  19.         this.label.string = this.text;  
  20.     },  
  21.   
  22.   
  23.     // 每一帧都会调用  
  24.     update: function (dt) {  
  25.   
  26.   
  27.     },  
  28. });  

你可能感兴趣的:(Helloworld and Cocos Creater instruction)