UnluckyCalimero
Öğrenci
- Katılım
- 19 Nisan 2023
- Mesajlar
- 3
- Reaksiyon puanı
- 0
- Puanları
- 1
- Yaş
- 18
C#:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
public class VideoPlayerScript : MonoBehaviour
{
[SerializeField] string videoFileName;
void Start()
{
PlayVideo();
}
public void PlayVideo()
{
VideoPlayer videoPlayer = GetComponent<VideoPlayer>();
if (videoPlayer)
{
string videoPath = System.IO.Path.Combine(Application.streamingAssetsPath, videoFileName);
Debug.Log(videoPath);
videoPlayer.url = videoPath;
videoPlayer.Play();
}
}
}
Amacım WebGL de video oynatmak fakat programı başlatınca ses geliyor video oynamıyor. Daha yeni başladığım için hakim değilim Unity WebGL`e, yardım ederseniz sevinirim.
İzleyip yapmaya çalıştığım video :