Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetView(bool)

Opens a view on the PropertyDatabase.
Read time 1 minuteLast updated 7 days ago

Definition

public IPropertyDatabaseView GetView(bool delayedSync = false)

Parameters

delayedSync

Boolean indicating if the sync between views should only happen when the view is disposed, or for every operation.

Returns

Type

Description

IPropertyDatabaseViewThe PropertyDatabase view.

Remarks

The view handles all the internal file operations and concurrent accesses. All operations on the PropertyDatabase create a view, so for performance reasons you should get a view with PropertyDatabase.GetView and do all your operations with it.
Additional Resources: IPropertyDatabaseView