SetStringField(IntPtr, IntPtr, string)
Sets the value of an instance field of the specified object.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.AndroidJNIModule
public static void SetStringField(IntPtr obj, IntPtr fieldID, string val)
Parameters
Remarks
This is a convenience function that calls SetObjectField() with the same parameters, but performs the necessary marshalling of the string value.
Additional Resources: AndroidJNI.SetObjectField.