添加图像作为 CC3Node 的子级
我用的是Cocos3D。 我有一个不同 CC3Node
的列表。我想在每个旁边放一张图片。 我的问题是:如何创建一个新的 CC3Node
并将其添加为子节点。
I'm using Cocos3D.
There i've a list of different CC3Node
s. I want to put an image next to each of it.
My problem is: how to create a new CC3Node
and add it as a Child.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要执行以下操作:
对于每个节点执行此操作:
最后,如果您想将这些节点添加为子节点,请执行以下操作:
而不是:
我希望它适合您!
You need to doing something like this:
And for doing this for each Node:
At the end of it, if you want to add these node each node as a child do:
instead of:
I hope it works for you!