Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


IntegrateChanges(HierarchyCommandList)

Callback that determines if changes from an update need to be integrated into the hierarchy. IntegrateChanges is called after HierarchyNodeTypeHandlerBase.ChangesPending returns true. When the hierarchy is updated, ChangesPending is called on all registered node ype handlers. If they return true, then IntegrateChanges is called on them. If they return false, then IntegrateChanges is not called on them.
Read time 1 minuteLast updated 10 days ago

Definition

  • Type: Method
  • Namespace: Unity.Hierarchy
  • Assembly: UnityEngine.HierarchyCoreModule
Warning
Deprecated. IntegrateChanges is obsolete, it is replaced by adding commands into the hierarchy node type handler's CommandList.
protected virtual bool IntegrateChanges(HierarchyCommandList cmdList)

Parameters

A hierarchy command list that can modify the hierarchy.

Returns

Type

Description

bool
true
if more invocations are needed to complete integrating changes, and
false
if the handler is done integrating changes.