Version: Unity 6.3 Beta (6000.3)
LanguageEnglish
  • C#

ProcessorUpdateSetting

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Settings controlling how a ProcessorInstance is updated over the course of its lifetime.

Additional resources: ProcessorInstance.CreationParameters, ProcessorInstance.IControl_1.Update, ProcessorInstance.IRealtime.Update

Properties

Property Description
Default The default update setting for a ProcessorInstance.
NeverUpdate Never invoke ProcessorInstance.IControl_1.Update on this processor nor ProcessorInstance.IRealtime.Update.
UpdateIfDataIsAvailable Invoke ProcessorInstance.IControl_1.Update or ProcessorInstance.IRealtime.Update only if data has been sent or returned from ProcessorInstance.Pipe.SendData since the last update.
UpdateAlways Always invoke ProcessorInstance.IControl_1.Update or ProcessorInstance.IRealtime.Update on this ProcessorInstance on every update.