Version: Unity 6 Preview (6000.0)
LanguageEnglish
  • C#

AndroidJavaObject.Get

Declaration

public FieldType Get(string fieldName);

Parameters

fieldName The name of the field (e.g. int counter; would have fieldName = "counter").

Description

Get the value of a field in an object (non-static).

The generic parameter determines the field type.


Declaration

public FieldType Get(IntPtr fieldID);

Parameters

fieldID The ID of the field to get.

Description

Get the value of a field in an object (non-static).

The generic parameter determines the field type.