言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

MovieTexture.duration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public var duration: float;
public float duration;
public duration as float

Description

ムービーの長さ

durationは動画が始まった時のみ利用可能であることに注意してください。それまではdurationは-1を返します。動画再生前に動画時間を知りたい場合は、オフラインで動画情報を抽出してテキストとして保持することを検討してください。そうして動画名で動画時間を調べることができます。

	var mov: MovieTexture;
	var gui: GUIText;

	function Start() {
		gui.text = mov.duration.ToString();
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public MovieTexture mov;
    public GUIText gui;
    void Start() {
        gui.text = mov.duration.ToString();
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public mov as MovieTexture

	public gui as GUIText

	def Start() as void:
		gui.text = mov.duration.ToString()