12345678910111213141516171819202122232425 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace ShadowStudio.Model
- {
- public class ArtVideoPlayer : PictruePlayer
- {
- public override bool IsNeedLoad()
- {
- if (Info.InstaceType == InstaceType.References || Info.InstaceType == InstaceType.ResourceLoad || Info.ArtType == ArtType.Movies)
- {
- return true;
- }
- return false;
- }
- //public override bool IsNeedInstance()
- //{
- // if (Info.InstaceType == InstaceType.ExtralURLDownload)
- // {
- // return false;
- // }
- // return true;
- //}
- }
- }
|