18 lines
362 B
C#
18 lines
362 B
C#
|
|
using Kill.Network;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
namespace Kill.UI.Pages
|
||
|
|
{
|
||
|
|
public class DeviceTeachingVideo : MonoBehaviour
|
||
|
|
{
|
||
|
|
public string videoUrl;
|
||
|
|
public string imageUrl;
|
||
|
|
public Image image;
|
||
|
|
void Start()
|
||
|
|
{
|
||
|
|
NetworkCtrl.Instance.LoadImageToUIImageAsync(imageUrl,image);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|