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