12345678910111213141516171819 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class ImagePickerCallback : AndroidJavaProxy
- {
- public ImagePickerCallback() : base("com.example.mylibrary.ImagePickerCallback")
- {
- }
-
- public void OnImagePicked(string imagePath)
- {
- Debug.Log("Selected image path: " + imagePath);
-
-
- }
- }
|