17 lines
335 B
C#
17 lines
335 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class UrlShow : BaseShow
|
|
{
|
|
/// <summary>
|
|
/// 鼠标单击事件
|
|
/// </summary>
|
|
public override void OnClick()
|
|
{
|
|
if (BaseController.CanControl && CanClick)
|
|
{
|
|
H5Controller.OpenUrl(info.URL);
|
|
}
|
|
}
|
|
} |