Version: 2022.3
言語: 日本語
Method group is Obsolete

WWW

class in UnityEngine

/

継承:CustomYieldInstruction

マニュアルに切り替える
Obsolete

説明

Web にシンプルにアクセスします

Obsolete: WWW has been replaced with UnityWebRequest.

このクラスは URL からコンテンツを取得するための小さなユーティリティモジュールです。

WWW(url) を呼び出す事によって WWW オブジェクトを生成し、バックグラウンドでダウンロードを開始します。

You can inspect the isDone property to see if the download has completed or yield the download object to automatically wait until it is (without blocking the rest of the game).

Use it if you want to get some data from a web server for integration with a game such as highscore lists or calling home for some reason. There is also functionality to create textures from images downloaded from the web and to stream & load new web player data files.

The WWW class can be used to send both GET and POST requests to the server. The WWW class will use GET by default and POST if you supply a postData parameter.

関連項目: postData パラメーターの有効なデータを生成するために WWWForm を使用します。

Note: URLs passed to WWW class must be '%' escaped.

Notes http://, https:// and file:// protocols are supported on iPhone. ftp:// protocol support is limited to anonymous downloads only. Other protocols are not supported.

Note: When using file protocol on Windows and Windows Store Apps for accessing local files, you have to specify file:/// (with three slashes).

// Get the Unity logo as a texture from the Unity website
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public string url = "https://unity3d.com/files/images/ogimg.jpg"; IEnumerator Start() { using (WWW www = new WWW(url)) { yield return www; Renderer renderer = GetComponent<Renderer>(); renderer.material.mainTexture = www.texture; } } }

継承メンバー

変数

keepWaitingコルーチンを中断させておく必要がある場合、表示します。