Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

Node.OnPortDataTypeChanged

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

Declaration

protected void OnPortDataTypeChanged(IPort port, Type previousType, Type newType);

Parameters

Parameter Description
port The port whose data type changed.
previousType The port's previous data type.
newType The port's new data type.

Description

Called when the data type of one of this node's ports changes.

Override this method to react to type changes on polymorphic ports (when the user picks a different type from the dropdown, or when connection propagation changes the port's IPort.DataType). This is also invoked if code directly assigns a new data type to any port.