峰哥,救救qwq

This commit is contained in:
CubePlayer
2025-07-23 01:36:18 +08:00
parent 95206a5cd3
commit 914c60fd72
13 changed files with 96240 additions and 1003 deletions

View File

@ -0,0 +1,21 @@
using System.Collections;
using System.Collections.Generic;
using RenderHeads.Media.AVProVideo;
using UnityEngine;
public class MediaPlayerTool : MonoBehaviour
{
public MediaPlayer m_MediaPlayer;
public string deviceId;
public string channelId;
void Start()
{
m_MediaPlayer = GetComponent<MediaPlayer>();
}
public void Init()
{
m_MediaPlayer.Play();
}
}