美文网首页
LayaBox:Panel面板添加子元素,防止重叠

LayaBox:Panel面板添加子元素,防止重叠

作者: 一眼就认出你 | 来源:发表于2019-08-15 15:25 被阅读0次

示例语言:AS3

//创建子元素
var _worldLeftItem:ChatLeftItem = new ChatLeftItem();
//设置子元素居中
_worldLeftItem.centerX=0.5;

//重点:设置子元素的y周
_worldLeftItem.y=_ui.worldItemPanel.contentHeight;

//添加到Panel
_ui.worldItemPanel.addChild(_worldLeftItem);

重点1:contentHeight获取面板的内容高度

_ui.worldItemPanel.contentHeight

重点2:通过内容高度设置下一个子元素的y轴,防止子元素重叠

_worldLeftItem.y=_ui.worldItemPanel.contentHeight;

相关文章

网友评论

      本文标题:LayaBox:Panel面板添加子元素,防止重叠

      本文链接:https://www.haomeiwen.com/subject/fnhnjctx.html