Files

16 lines
415 B
C#
Raw Permalink Normal View History

2024-01-27 08:49:55 +08:00
using System.Collections;
using System.Collections.Generic;
using System.IO;
using UnityEngine;
using UnityEngine.Video;
public class LoadVideoFromStreamingAssets : MonoBehaviour
{
public VideoPlayer videoPlayer;
public string VideoPathFromStreamingAssets;
void Start()
{
videoPlayer.url = Path.Combine(Application.streamingAssetsPath, VideoPathFromStreamingAssets);
}
}