E_ElecCompetition/Electrical_inspectionCompet.../Assets/Script/KDLURL/testURL.cs

15 lines
311 B
C#

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);
}
}