|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using ZenFulcrum.EmbeddedBrowser;
|
|
|
|
public class testURL : MonoBehaviour
|
|
{
|
|
[SerializeField] Browser browser;
|
|
public void init(string urls)
|
|
{
|
|
browser.Url = urls;
|
|
browser.gameObject.SetActive(true);
|
|
}
|
|
}
|