Click or drag to resize
AB4D logo

DXViewIsAutomaticallyUpdatingDXScene Property

Gets or sets a Boolean that specifies if DXView is calling DXScene's Update (checking for changed in all SceneNodes) on every WPF's rendering event. When IsAutomaticallyUpdatingDXScene is set to false, this can improve performance but you need to manually call Update method after each change of the objects. Default value is true.

Namespace: Ab3d.DirectX.Controls
Assembly: Ab3d.DXEngine.Wpf (in Ab3d.DXEngine.Wpf.dll) Version: 7.0.8865.1045
Syntax
C#
public bool IsAutomaticallyUpdatingDXScene { get; set; }

Property Value

Boolean
Remarks

IsAutomaticallyUpdatingDXScene gets or sets a Boolean that specifies if DXView is calling Update on every WPF's rendering event.

Update method checks for any changed in the SceneNodes created from WPF objects.

With setting IsAutomaticallyUpdatingDXScene to false you can improve performance because SceneNodes are not checked for changes. But in this case you need to manually call Update method after each change of the objects.

This method also sets the IsAutomaticallyUpdatingBeforeEachRender property.

See Also