广西桂平帝恒管道燃气投资有限公司多角色网上演练
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
1.1 KiB

using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Events;
namespace FFmpeg.Demo.IOS
{
public class IOSOutputView : MonoBehaviour
{
[System.Serializable]
public class PathEvent : UnityEvent<string> { }
public Text iosDirectory;
public Text fileNamePlaceholder;
public PathEvent pathSetter;
void Awake()
{
#if UNITY_IOS && !UNITY_EDITOR
//It's a default sanbox place to keep Application files (Documents directory)
//https://developer.apple.com/library/content/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html
iosDirectory.text = Application.persistentDataPath + "/";
OnFileNameInput(fileNamePlaceholder.text);
#else
gameObject.SetActive(false);
#endif
}
/// <summary>
/// Is called from InputField (inspector) as well.
/// </summary>
/// <param name="fileName">File name.</param>
public void OnFileNameInput(string fileName)
{
pathSetter.Invoke(iosDirectory.text + fileName);
}
}
}