可以通过将游戏对象标记为非活动来暂时从场景中移除此对象。可以使用脚本的 activeSelf 属性或者使用 Inspector 中的激活复选框来完成此操作
游戏对象的激活复选框
停用父对象时,停用也会覆盖其所有子对象上的 activeSelf 设置,因此父级的整个层级视图将变为非活动状态。请注意,这不会更改子对象上 activeSelf 属性的值,因此一旦重新激活父对象,子对象将恢复到其原始状态。这意味着无法通过读取 activeSelf 属性来确定子对象当前是否在场景中处于活动状态。而应该使用 activeInHierarchy 属性,该属性将考虑父对象的覆盖效果。
在 Unity 4.0 中,已引入此覆盖行为。在早期版本中,有一个称为 SetActiveRecursively 的函数可用于激活或停用给定父对象的子项。但是,此函数的工作方式不同:每个子对象的激活设置都已更改 - 可以关闭和打开整个层级视图,但是子对象无法“记住”自己最初所处的状态。为了避免破坏旧版代码,__SetActiveRecursively__ 已保留在 4.0 的 API 中,但不建议予以使用,而且将来可能会将其移除。在实际希望更改子项的 activeSelf 设置的极少情况下,可以使用如下代码:
// JavaScript
function DeactivateChildren(g: GameObject, a: boolean) {
g.activeSelf = a;
for (var child: Transform in g.transform) {
DeactivateChildren(child.gameObject, a);
}
}
// C#
void DeactivateChildren(GameObject g, bool a) {
g.activeSelf = a;
foreach (Transform child in g.transform) {
DeactivateChildren(child.gameObject, a);
}
}
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.