25 lines
560 B
C#
Raw Normal View History

2022-02-18 18:12:31 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
//using ZenFulcrum.EmbeddedBrowser;
2022-02-18 18:12:31 +08:00
public class test : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
//var b = transform.Find("Browser (GUI)").GetComponent<Browser>();
//b.EvalJS("navigator.pfLang = 'zh'");
//b.RegisterFunction("Test", args =>
//{
2022-02-18 18:12:31 +08:00
//});
2022-02-18 18:12:31 +08:00
}
void Test(string str, int i) { }
// Update is called once per frame
void Update()
{
}
}