0
私はunity3d v5.4.0f3でWebGLの上の私のゲームを構築しようとしていると私はこのエラーを取得しています:はユニティエラー:見つからないアセンブリ参照
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
[RequireComponent (typeof(AudioSource))]
public class videoplayer : MonoBehaviour {
public MovieTexture movie;
private AudioSource audio;
void Start() {
GetComponent<RawImage>().texture = movie as MovieTexture;
audio = GetComponent<AudioSource>();
audio.clip = movie.audioClip;
movie.Play();
audio.Play();
}
void Update() {
}
}
:ここ
errorCS-0246:The type or namespace name 'MovieTexture' could not be found. Are you missing a using directive or assembly reference?
は、C#のコードです
ビルドターゲット(プレーヤー設定)は何ですか? –
私は知らない、どのように私はそれを知っていますか? –
申し訳ありませんが、ビルダー設定ではなく、プレーヤーの設定です。 ** Target Platform ** –