Method | Description | |
---|---|---|
LoadObject ( string path, |
Loads an object and returns the object data.
|
|
LoadSound ( string path, Sounds &sound ) : bool |
Loads a sound and returns the sound data.
|
|
LoadTexture ( string path, |
Loads a texture and returns the texture data.
|
|
QueryTextureDimensions ( string path, int &width, int &height ) : bool |
Queries the dimensions of a texture.
|
|
RegisterSound ( Sounds sound, SoundHandle &handle ) : bool |
Registers a sound and returns a handle to the sound.
|
|
RegisterSound ( string path, SoundHandle &handle ) : bool |
Registers a sound and returns a handle to the sound.
|
|
RegisterTexture ( Textures texture, |
Registers a texture and returns a handle to the texture.
|
|
RegisterTexture ( string path, |
Registers a texture and returns a handle to the texture.
|
|
ReportProblem ( ProblemType type, string text ) : void |
Reports a problem to the host application.
|
public LoadObject ( string path, |
||
path | string | The path to the file or folder that contains the object. |
obj | Receives the object. | |
return | bool |
public LoadSound ( string path, Sounds &sound ) : bool | ||
path | string | The path to the file or folder that contains the sound. |
sound | Sounds | Receives the sound. |
return | bool |
public LoadTexture ( string path, |
||
path | string | The path to the file or folder that contains the texture. |
parameters | The parameters that specify how to process the texture. | |
texture | Textures | Receives the texture. |
return | bool |
public QueryTextureDimensions ( string path, int &width, int &height ) : bool | ||
path | string | The path to the file or folder that contains the texture. |
width | int | Receives the width of the texture. |
height | int | Receives the height of the texture. |
return | bool |
public RegisterSound ( Sounds sound, SoundHandle &handle ) : bool | ||
sound | Sounds | The sound data. |
handle | SoundHandle | Receives a handle to the sound. |
return | bool |
public RegisterSound ( string path, SoundHandle &handle ) : bool | ||
path | string | The path to the file or folder that contains the sound. |
handle | SoundHandle | Receives a handle to the sound. |
return | bool |
public RegisterTexture ( Textures texture, |
||
texture | Textures | The texture data. |
parameters | The parameters that specify how to process the texture. | |
handle | TextureHandle | Receives the handle to the texture. |
return | bool |
public RegisterTexture ( string path, |
||
path | string | The path to the file or folder that contains the texture. |
parameters | The parameters that specify how to process the texture. | |
handle | TextureHandle | Receives the handle to the texture. |
return | bool |
public ReportProblem ( ProblemType type, string text ) : void | ||
type | ProblemType | The type of problem that is reported. |
text | string | The textual message that describes the problem. |
return | void |