unity3d使用3D WebView播放网页中的视频

Unity2021.3.35f1,硬件ESP32-Cam,3D WebView插件

1.新建工程,导入3D WebView for Winfows和3D WebView for Android

2.打开场景Assets\Vuplex\WebView\Demos\Scenes\2_CanvasWebViewDemo

3.修改Canvas的Render Mode为Screen Space-Camera,修改Canvas Scaler

4.修改CanvasWebViewPrefab的组件RectTransform的对齐方式和宽高,宽高与分辨率相同

5.修改CanvasWebViewPrefab中的网址,Resolution改为1(实为缩放)

6.运行程序即可看到视频

7.导入OpenCV for Unity 2.5.9

8.创建Scripts文件夹,再创建Test.cs,打开编辑代码

cs 复制代码
using OpenCVForUnity.CoreModule;
using OpenCVForUnity.ImgprocModule;
using OpenCVForUnity.UnityUtils;
using UnityEngine;
using UnityEngine.UI;
using Vuplex.WebView;
using Vuplex.WebView.Internal;

public class Test : MonoBehaviour
{
    public RawImage rawImage;
    public CanvasWebViewPrefab view;
    public CanvasViewportMaterialView vp;

    Texture2D texture;
    Texture2D texture1;
    RenderTexture _tmpRenderTexture;

    bool init = false;
    // Start is called before the first frame update
    void Start()
    {

#if UNITY_ANDROID
        view.OnNewTextureHandle += OnRenderTex;
#endif
    }

    void OnRenderTex(EventArgs<Texture2D> eventArgs)
    {
        Draw(eventArgs.Value);
    }

    private void Update()
    {
#if UNITY_STANDALONE_WIN || UNITY_EDITOR
        Texture2D tx = vp.Texture as Texture2D;
        Draw(tx);
#endif
    }

    void Draw(Texture2D tx)
    {
        if (tx == null)
        {
            return;
        }
        if (!init)
        {
            texture = new Texture2D(tx.width, tx.height, TextureFormat.ARGB32, false);
            texture1 = new Texture2D(tx.width, tx.height, TextureFormat.ARGB32, false);

            init = true;
        }

        Mat cameraMat = new Mat(tx.height, tx.width, CvType.CV_8UC4);

        Point pt = new Point(tx.width / 2, tx.height / 2);

        Utils.textureToTexture2D(tx, texture);
        Utils.texture2DToMat(texture, cameraMat);
        Imgproc.circle(cameraMat, pt, 30, new Scalar(255, 0, 0), 3);
        Utils.matToTexture2D(cameraMat, texture1);
        rawImage.texture = texture1;
    }

}

9.创建实体Test,添加Test组件,并给变量赋值

10.运行程序,可以在RawImage中看到一个圆圈。

至此Windows环境已适配完成。

下面开始适配安卓版

11.去掉勾选CanvasWebViewPrefab组件中的Native 2D Mode (Android, iOS, WebGL, and UWP only)

12.将平台切换到Android,在Player Setting...中Graphics APIS 添加Vulkan

13.打开Assets\Vuplex\WebView\Core\Scripts\BaseWebViewPrefab.cs添加如下代码

cs 复制代码
        public delegate void OnNewTexture(EventArgs<Texture2D> eventArgs);
        public OnNewTexture OnNewTextureHandle;
cs 复制代码
if (OnNewTextureHandle != null)
{
   OnNewTextureHandle(eventArgs);
}

13.发布apk,在手机上运行,即可看到与PC相同的效果

相关推荐
YY-nb7 小时前
Unity Apple Vision Pro 开发教程:物体识别跟踪
unity·游戏引擎·apple vision pro
Cool-浩7 小时前
Unity 开发Apple Vision Pro物体识别追踪ObjectTracking
unity·ar·apple vision pro·mr·物体识别·vision pro教程·objecttracking
qq_2529599712 小时前
8K+Red+Raw+ProRes422分享5个影视级视频素材网站
视频
向宇it19 小时前
【从零开始入门unity游戏开发之——C#篇23】C#面向对象继承——`as`类型转化和`is`类型检查、向上转型和向下转型、里氏替换原则(LSP)
java·开发语言·unity·c#·游戏引擎·里氏替换原则
Cool-浩1 天前
Unity 开发Apple Vision Pro空间锚点应用Spatial Anchor
unity·游戏引擎·apple vision pro·空间锚点·spatial anchor·visionpro开发
吴梓穆1 天前
unity 最小后监听键盘输入
unity
一个程序员(●—●)1 天前
四元数旋转+四元数和向量相乘+音频相关
unity·游戏引擎
YY-nb1 天前
Apple Vision Pro 开发教程:通过 TestFlight 把开发的程序安装到其他的设备上测试
unity·apple vision pro
Ke-Di1 天前
Unity-URP设置单独渲染UI相机
ui·unity
冒泡P1 天前
【Lua热更新】上篇
开发语言·数据结构·unity·c#·游戏引擎·lua