Свойство | Тип | Описание | |
---|---|---|---|
CheckSecurityOnHeaders | void | ||
DestroyWWW | void | ||
EscapeURL | string | ||
FlattenedHeadersFrom | string[] | ||
GetAudioClipInternal | |||
GetTextEncoder | Encoding | ||
GetTexture | |||
GetTextureFromURL | |||
GetURL | string | ||
INTERNAL_CALL_WWW | void | ||
InitWWW | void | ||
LoadFromCacheOrDownload | |||
LoadFromCacheOrDownload | |||
LoadImageIntoTexture | void | ||
LoadUnityWeb | void | ||
ParseHTTPHeaderString | string>.Dictionary | ||
UnEscapeURL | string | ||
WWW | System | ||
enforceWebSecurityRestrictions | bool |
Метод | Описание | |
---|---|---|
Dispose ( ) : void |
Disposes of an existing WWW object.
|
|
EscapeURL ( string s, [ e ) : string |
Escapes characters in a string to ensure they are URL-friendly.
|
|
GetAudioClip ( bool threeD ) : |
Returns an AudioClip generated from the downloaded data (Read Only).
|
|
GetAudioClip ( bool threeD, bool stream ) : |
Returns an AudioClip generated from the downloaded data (Read Only).
|
|
GetAudioClip ( bool threeD, bool stream, AudioType audioType ) : |
Returns an AudioClip generated from the downloaded data (Read Only).
|
|
GetAudioClipCompressed ( ) : |
Returns an AudioClip generated from the downloaded data that is compressed in memory (Read Only).
|
|
GetAudioClipCompressed ( bool threeD ) : |
Returns an AudioClip generated from the downloaded data that is compressed in memory (Read Only).
|
|
GetAudioClipCompressed ( bool threeD, AudioType audioType ) : |
Returns an AudioClip generated from the downloaded data that is compressed in memory (Read Only).
|
|
LoadFromCacheOrDownload ( string url, |
||
LoadFromCacheOrDownload ( string url, int version, [ crc ) : |
Loads an AssetBundle with the specified version number from the cache. If the AssetBundle is not currently cached, it will automatically be downloaded and stored in the cache for future retrieval from local storage.
|
|
UnEscapeURL ( string s, [ e ) : string |
Converts URL-friendly escape sequences back to normal text.
|
|
WWW ( string url ) : System |
Creates a WWW request with the given URL.
|
|
WWW ( string url, |
Creates a WWW request with the given URL.
|
|
WWW ( string url, byte postData ) : System |
Creates a WWW request with the given URL.
|
|
WWW ( string url, byte postData, string>.Dictionary |
Метод | Описание | |
---|---|---|
CheckSecurityOnHeaders ( string headers ) : void | ||
DestroyWWW ( bool cancel ) : void | ||
EscapeURL ( string s ) : string | ||
FlattenedHeadersFrom ( string>.Dictionary |
||
GetAudioClipInternal ( bool threeD, bool stream, bool compressed, AudioType audioType ) : |
||
GetTextEncoder ( ) : Encoding | ||
GetTexture ( bool markNonReadable ) : |
||
GetTextureFromURL ( string url ) : |
||
GetURL ( string url ) : string | ||
INTERNAL_CALL_WWW ( |
||
InitWWW ( string url, byte postData, string iHeaders ) : void | ||
LoadFromCacheOrDownload ( string url, |
||
LoadFromCacheOrDownload ( string url, int version ) : |
||
LoadImageIntoTexture ( |
||
LoadUnityWeb ( ) : void | ||
ParseHTTPHeaderString ( string input ) : string>.Dictionary |
||
UnEscapeURL ( string s ) : string | ||
WWW ( string url, |
||
enforceWebSecurityRestrictions ( ) : bool |
public static EscapeURL ( string s, [ e ) : string | ||
s | string | A string with characters to be escaped. |
e | [ | The text encoding to use. |
Результат | string |
public GetAudioClip ( bool threeD ) : |
||
threeD | bool | Use this to specify whether the clip should be a 2D or 3D clip /// the .audioClip property defaults to 3D. |
Результат |
public GetAudioClip ( bool threeD, bool stream ) : |
||
threeD | bool | Use this to specify whether the clip should be a 2D or 3D clip /// the .audioClip property defaults to 3D. |
stream | bool | Sets whether the clip should be completely downloaded before it's ready to play (false) or the stream can be played even if only part of the clip is downloaded (true). /// The latter will disable seeking on the clip (with .time and/or .timeSamples). |
Результат |
public GetAudioClip ( bool threeD, bool stream, AudioType audioType ) : |
||
threeD | bool | Use this to specify whether the clip should be a 2D or 3D clip /// the .audioClip property defaults to 3D. |
stream | bool | Sets whether the clip should be completely downloaded before it's ready to play (false) or the stream can be played even if only part of the clip is downloaded (true). /// The latter will disable seeking on the clip (with .time and/or .timeSamples). |
audioType | AudioType | The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL. |
Результат |
public GetAudioClipCompressed ( ) : |
||
Результат |
public GetAudioClipCompressed ( bool threeD ) : |
||
threeD | bool | Use this to specify whether the clip should be a 2D or 3D clip. |
Результат |
public GetAudioClipCompressed ( bool threeD, AudioType audioType ) : |
||
threeD | bool | Use this to specify whether the clip should be a 2D or 3D clip. |
audioType | AudioType | The AudioType of the content your downloading. If this is not set Unity will try to determine the type from URL. |
Результат |
public static LoadFromCacheOrDownload ( string url, |
||
url | string | |
hash | ||
crc | [ | |
Результат |
public static LoadFromCacheOrDownload ( string url, int version, [ crc ) : |
||
url | string | The URL to download the AssetBundle from, if it is not present in the cache. Must be '%' escaped. |
version | int | Version of the AssetBundle. The file will only be loaded from the disk cache if it has previously been downloaded with the same version parameter. By incrementing the version number requested by your application, you can force Caching to download a new copy of the AssetBundle from url. |
crc | [ | An optional CRC-32 Checksum of the uncompressed contents. If this is non-zero, then the content will be compared against the checksum before loading it, and give an error if it does not match. You can use this to avoid data corruption from bad downloads or users tampering with the cached files on disk. If the CRC does not match, Unity will try to redownload the data, and if the CRC on the server does not match it will fail with an error. Look at the error string returned to see the correct CRC value to use for an AssetBundle. |
Результат |
public static UnEscapeURL ( string s, [ e ) : string | ||
s | string | A string containing escaped characters. |
e | [ | The text encoding to use. |
Результат | string |
public WWW ( string url ) : System | ||
url | string | The url to download. Must be '%' escaped. |
Результат | System |
public WWW ( string url, |
||
url | string | The url to download. Must be '%' escaped. |
form | A WWWForm instance containing the form data to post. | |
Результат | System |
public WWW ( string url, byte postData ) : System | ||
url | string | The url to download. Must be '%' escaped. |
postData | byte | A byte array of data to be posted to the url. |
Результат | System |
public WWW ( string url, byte postData, string>.Dictionary |
||
url | string | |
postData | byte | |
headers | string>.Dictionary | |
Результат | System |