标签:应该 添加 指定 rect nod class 构建 分解 https
Director
任务是控制场景替换和转换。 Director
是一个共享的单例对象,可以在代码中的任何地方调用。
中序遍历
,先遍历左子树,然后根节点,最后是右子树。中序遍历下图的节点,能得到 A, B, C, D, E, F, G, I,H
这样的序列。Scene
的 addChild()
方法构建场景图.// Adds a child with the z-order of -2, that means // it goes to the "left" side of the tree (because it is negative) scene->addChild(title_node, -2); // When you don‘t specify the z-order, it will use 0 scene->addChild(label_node); // Adds a child with the z-order of 1, that means // it goes to the "right" side of the tree (because it is positive) scene->addChild(sprite_node, 1);
z-order
值大的节点对象会后绘制,值小的节点对象先绘制。如果两个节点对象的绘制范围有重叠,z-order
值大的可能会覆盖 z-order
值小的。标签:应该 添加 指定 rect nod class 构建 分解 https
原文地址:https://www.cnblogs.com/zust-lms/p/12545599.html