You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
717 B

using UnityEngine;
//-----------------------------------------------------------------------------
// Copyright 2015-2018 RenderHeads Ltd. All rights reserverd.
//-----------------------------------------------------------------------------
namespace RenderHeads.Media.AVProVideo.Demos
{
/// <summary>
/// This component just stores description text related to a specific demo scene
/// The MediaPlayer in the scene can also be referenced to allow for scene change
/// fade-from-black to only start once the video has loaded and has a valid frame
/// </summary>
public class DemoInfo : MonoBehaviour
{
public string _title;
[Multiline]
public string _description;
public MediaPlayer _media;
}
}