我只是想知道如何禁用class GameObject
{
DateTime lastUpdate;
void Update()
{
TimeSpan deltaTime = DateTime.Now - lastUpdate;
...
}
}
中的youtube图标。可能吗?
我不想在点击图标时将用户带到youtube。有没有办法禁用youtube图标?
以下是我使用deltaTime
播放视频的代码。
YouTubeStandalonePlayer
答案 0 :(得分:1)
根据API,你不能。
但是,您可以尝试使用其他(非独立)类,这可能会让您在文档中更好地控制as suggested:There are two ways to play videos. The first option is to place a YouTubePlayerFragment or YouTubePlayerView in your View hierarchy and then use the YouTubePlayer to control video playback in the View. **This gives a fine control of the experience**.
如果他们不接受它,您至少可以更好地控制流/ UI可见性,因为您正在控制活动(与将控件赋予独立活动相反)