Cocos Creator 获取组件宽高/坐标方法

  • Post author:
  • Post category:其他


属性【block可以是任何名称】

cc.Class({
    extends: cc.Component,
	 properties: {
	        block:cc.Node,
	        ...
	        }

获取附着脚本的组件的宽高/坐标方法:(需要加Node)

this.node.width
this.node.height
this.node.x
this.node.y

获取properties中组件的宽高/坐标方法:(不用加Node)

this.block.width
this.block.height
this.block.x
this.block.y



版权声明:本文为minatosan原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。