unity网页插件Embedded Browser(ZFBrowser) js

1.输入中文
pointerUIGUI.cs

    public void OnSelect(BaseEventData eventData) {
        _keyboardHasFocus = true;
        Input.imeCompositionMode = IMECompositionMode.On;//CEF will handle the IME
    }
2.文字的选择框不能出现
pointerUIGUI.cs

    public void OnSelect(BaseEventData eventData) {
        _keyboardHasFocus = true;
        Input.imeCompositionMode = IMECompositionMode.On;//CEF will handle the IME
        Input.compositionCursorPos = new Vector2(Screen.width, Screen.height);
    }
3.证书问题  https访问http不安全问题
BrowserNative.cs

public static List<string> commandLineSwitches = new List<string>() {
+
    "--ignore-certificate-errors",
    "--allow-running-insecure-content"

https://www.cnblogs.com/gentlesunshine/p/13923179.html

4无法播放网页视频 播放监控用UniversalMediaPlayer插件

猜你喜欢

转载自blog.csdn.net/WantFK/article/details/128180685
今日推荐